npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@pas7/nestjs-strict-json

v0.5.3

Published

Strict JSON parsing for NestJS (Express/Fastify) with duplicate-key detection

Readme

NestJS Strict JSON Parser for Security and Performance

@pas7/nestjs-strict-json is a strict JSON parser for NestJS, Express, and Fastify.

📖 Read our article: Understanding JSON Security Vulnerabilities and How We Solve Them - deep dive into the problems this package solves.

It blocks dangerous and ambiguous payloads at parser level:

  • duplicate JSON keys
  • prototype pollution keys (__proto__, constructor, prototype)
  • excessive JSON depth (DoS-style payloads)
  • disallowed key paths (whitelist/blacklist)

If you need secure JSON parsing in Node.js APIs, this package is built for that exact use case.

npm version Release Build Status License Tests Performance

🎯 Latest Achievements (v0.5.0)

🚀 Performance Breakthrough

  • 12.8x faster parsing - optimized from 80.71ms to 6.30ms per operation
  • 85% less memory - reduced peak heap from 146MB to 21MB
  • Only 18% slower than native JSON.parse (was 24x slower)
  • Validator caching - 40-45% faster validation with LRU cache

🐛 Critical Bug Fixes

  • Memory leak fixed - cleanup interval now properly disposed with shutdownCacheManager()
  • Streaming duplicate validation - correctly detects duplicate keys at all nesting levels

✨ New Cache Management API

  • shutdownCacheManager() - graceful shutdown of cleanup interval
  • resetCacheManager() - full reset for testing
  • isCleanupIntervalRunning() - diagnostics for interval state
  • getCachedValidator() - get or create cached validator
  • clearValidatorCache() - clear validator cache
  • getValidatorCacheSize() - get cache size

🧪 Test Coverage

  • ✅ Added 63 new tests (cache: 13, streaming: 32, validation: 18)
  • ✅ Total: 551 tests passing

Why teams use this

  • Security first: parser-level rejection of duplicate keys and prototype pollution attempts.
  • Production ready: works with NestJS, vanilla Express, and vanilla Fastify.
  • Performance controls: cache, lazy mode, streaming threshold, fast path.
  • Typed and explicit errors: stable error codes for monitoring and incident response.

🚀 Performance

| Scenario | v0.4.x Baseline | v0.5.0 Optimized | Improvement | |----------|-----------------|------------------|-------------| | Large JSON (1MB) | 80.71ms/op | 6.30ms/op | 12.8x faster | | Memory (Peak Heap) | 146.61MB | 21.03MB | 85% less | | vs Native JSON.parse | 24x slower | 1.18x slower | 95% closer |

Benchmark Snapshot (Large Payload)

Latest local benchmark (2026-02-07, payload ~1.24 MB, 10,000 users):

| Implementation | Avg ms/op | Peak heap delta (MB) | Retained heap (MB) | |---|---:|---:|---:| | Native JSON.parse | 3.7878 | 9.62 | -0.01 | | jsonc-parser + JSON.parse | 21.4828 | 49.11 | 0.00 | | @pas7 strict (baseline) | 76.1405 | 253.60 | 0.00 | | @pas7 strict (optimized) | 3.2743 | 61.80 | -0.00 |

Key takeaways:

  • @pas7 strict (optimized) was faster than native in this run.
  • @pas7 strict (optimized) was much faster than jsonc-parser + JSON.parse.
  • Security checks and optimization profile significantly change results, so compare by scenario.

Reproduce:

npm run bench:compare

Security Capability Comparison

| Capability | Native JSON.parse | express.json() / default parsers | @pas7/nestjs-strict-json | |---|---|---|---| | Duplicate key rejection | No | No | Yes | | Prototype pollution key blocking | No | No | Yes | | Max depth enforcement | No | No | Yes | | Key whitelist/blacklist | No | No | Yes | | Unified behavior across Nest/Express/Fastify | No | Partial | Yes | | Structured parser error codes | No | Limited | Yes |

🏆 Comparison with Competitors

| Implementation | Avg ms/op (1MB) | Peak Heap (MB) | Relative Speed | |-------------|------------------|-----------------|----------------| | Native JSON.parse | 5.36 | 0.00 | 🚀 1.0x (baseline) | | @pas7/nestjs-strict-json (v0.5.0) | 6.30 | 21.03 | ✅ 0.85x (18% slower) | | jsonc-parser + JSON.parse | 51.18 | 112.88 | ⚠️ 0.10x (10x slower) | | @pas7/nestjs-strict-json (v0.4.x baseline) | 80.71 | 146.61 | ❌ 0.07x (24x slower) |

Installation

# Using npm
npm install @pas7/nestjs-strict-json

# Using bun (optional, faster)
bun add @pas7/nestjs-strict-json

Quick Start

NestJS + Fastify

import { NestFactory } from "@nestjs/core";
import { AppModule } from "./app.module";
import { registerStrictJson } from "@pas7/nestjs-strict-json";

async function bootstrap() {
  const app = await NestFactory.create(AppModule);
  registerStrictJson(app);
  await app.listen(3000);
}
bootstrap();

NestJS + Express

Important: disable default body parser so duplicate keys are not lost before strict parsing.

import { NestFactory } from "@nestjs/core";
import { AppModule } from "./app.module";
import { registerStrictJson } from "@pas7/nestjs-strict-json";

async function bootstrap() {
  const app = await NestFactory.create(AppModule, { bodyParser: false });
  registerStrictJson(app);
  await app.listen(3000);
}
bootstrap();

Vanilla Express

import express from "express";
import { createStrictJsonExpressMiddleware } from "@pas7/nestjs-strict-json";

const app = express();

app.use(
  createStrictJsonExpressMiddleware({
    maxBodySizeBytes: 1024 * 1024,
    enableStreaming: true,
    streamingThreshold: 100 * 1024,
  }),
);

app.post("/api", (req, res) => {
  res.json({ received: req.body });
});

app.listen(3000);

Vanilla Fastify

import Fastify from "fastify";
import { registerStrictJsonFastify } from "@pas7/nestjs-strict-json";

const server = Fastify();
registerStrictJsonFastify(server, { maxBodySizeBytes: 1024 * 1024 });

server.post("/api", async (request) => request.body);
server.listen({ port: 3000 });

API

Nest integration

  • registerStrictJson(app, options?)
  • StrictJsonModule.forRoot(options?)

Adapter integration

  • createStrictJsonExpressMiddleware(options?)
  • registerStrictJsonFastify(instance, options?)

Core parser integration

  • parseStrictJson(raw, options?)
  • parseStrictJsonAsync(raw, options?)
  • clearParseCache()
  • getParseCacheSize()

Cache management (v0.5.0+)

  • shutdownCacheManager() - graceful shutdown of cleanup interval (call on app shutdown)
  • resetCacheManager() - full cache reset for testing
  • isCleanupIntervalRunning() - check if cleanup interval is active
  • getCachedValidator(key) - get or create cached validator
  • clearValidatorCache() - clear validator cache
  • getValidatorCacheSize() - get current cache size

StrictJsonOptions

type StrictJsonOptions = {
  maxBodySizeBytes?: number;

  enablePrototypePollutionProtection?: boolean;
  dangerousKeys?: string[];

  whitelist?: string[];
  blacklist?: string[];
  maxDepth?: number;
  ignoreCase?: boolean;

  enableStreaming?: boolean;
  streamingThreshold?: number;
  chunkSize?: number;

  lazyMode?: boolean;
  lazyModeThreshold?: number;
  lazyModeDepthLimit?: number;
  lazyModeSkipPrototype?: boolean;
  lazyModeSkipWhitelist?: boolean;
  lazyModeSkipBlacklist?: boolean;

  enableCache?: boolean;
  cacheSize?: number;
  cacheTTL?: number;

  enableFastPath?: boolean;

  onDuplicateKey?: (error: unknown) => void | Promise<void>;
  onInvalidJson?: (error: unknown) => void | Promise<void>;
  onBodyTooLarge?: (error: unknown) => void | Promise<void>;
  onPrototypePollution?: (error: unknown) => void | Promise<void>;
  onError?: (error: unknown) => void | Promise<void>;
};

Error Codes

  • STRICT_JSON_DUPLICATE_KEY
  • STRICT_JSON_INVALID_JSON
  • STRICT_JSON_BODY_TOO_LARGE
  • STRICT_JSON_PROTOTYPE_POLLUTION
  • STRICT_JSON_DEPTH_LIMIT

Recommended Production Profile

registerStrictJson(app, {
  maxBodySizeBytes: 1024 * 1024,
  enablePrototypePollutionProtection: true,
  maxDepth: 20,
  enableCache: true,
  enableFastPath: true,
});

Compatibility

  • Node.js 20+
  • NestJS 10+
  • Express 4+
  • Fastify 4+

📚 Documentation

🤝 Support

For support, please:

🏢 Maintained by

PAS7 - Software development company

License

Apache-2.0