JSON serialization is a critical task in web development, particularly for applications built with Node.js and Express.js. While the native JSON serialization in Node.js (JSON.stringify()) is straightforward and convenient, it can become a performance bottleneck, especially under heavy load. This documentation introduces express-fast-json-stringify, a custom middleware package that leverages fast-json-stringify to significantly boost JSON serialization performance in Express applications.
Run it now on StackBlitz — it boots the Express server, serves the same payload through res.json() and res.fastJson(), and prints both responses side by side. The sources are in this repository.
fast-json-stringify is a JSON serialization library developed by the Fastify team. It analyzes JSON schema definitions and compiles them into serialization functions specialized for the exact shape of your payload, so it can skip everything the schema does not describe instead of walking the object generically like JSON.stringify() has to.
express-fast-json-stringify is an npm package that brings the performance benefits of fast-json-stringify to Express.js applications. By integrating this package, you can achieve faster JSON serialization, thus improving the overall performance of your application.
First, install the express-fast-json-stringify package:
npm install express-fast-json-stringify
It requires Express 4.16 or newer (Express 5 included) and Node.js 20 or newer.
Define a schema object that specifies the structure of your JSON responses. This schema will be used by fast-json-stringify to optimize the serialization process.
import { Schema } from 'express-fast-json-stringify';
const schema: Schema = {
title: 'Example Schema',
type: 'object',
properties: {
firstName: { type: 'string' },
lastName: { type: 'string' },
age: {
description: 'Age in years',
type: 'integer',
},
},
};Use the fastJsonSchema middleware in your Express routes, passing the schema object as an argument. This will set up the optimized JSON serialization for that route.
import express from 'express';
import { fastJsonSchema, Schema } from 'express-fast-json-stringify';
const app = express();
const exampleSchema: Schema = {
title: 'Example Schema',
type: 'object',
properties: {
firstName: { type: 'string' },
lastName: { type: 'string' },
age: { type: 'integer' },
},
};
app.get('/', fastJsonSchema(exampleSchema), (req, res, next) => {});Instead of using the default res.json() method, use the res.fastJson() method provided by the middleware to send JSON responses. This leverages the speed benefits of fast-json-stringify.
import express from 'express';
import { fastJsonSchema, Schema } from 'express-fast-json-stringify';
const app = express();
const schema: Schema = {
title: 'Example Schema',
type: 'object',
properties: {
firstName: { type: 'string' },
lastName: { type: 'string' },
age: {
description: 'Age in years',
type: 'integer',
},
},
};
app.get('/', fastJsonSchema(schema), (req, res, next) => {
try {
const data = {
firstName: 'Simone',
lastName: 'Nigro',
age: 40,
};
res.fastJson(data);
} catch (error) {
next(error);
}
});res.fastJson() is a drop-in replacement for res.json(): only the
serialization changes, every HTTP detail stays the same.
| Behavior | What res.fastJson() does |
|---|---|
Content-Type |
application/json; charset=utf-8, unless the route already set one with res.type(). |
Content-Length |
Always set, from the byte length of the payload, so the response is never chunked. |
ETag |
Follows the app etag setting, exactly like res.send(). Set app.set('etag', false) to skip it. |
| Conditional requests | A matching If-None-Match answers 304 with no body. |
204 and 304 |
No body and no Content-Type/Content-Length/Transfer-Encoding. |
HEAD |
Headers only, Content-Length included. |
The payload is serialized before the status code is inspected, so a body that
does not match the schema still throws on a 204 — just like res.json().
If you already publish an OpenAPI (or Swagger) document, the response schemas
are written there — no need to repeat them in the routes. fastJsonOpenApi
takes that document and resolves the schema per route and per status code:
import express from 'express';
import { fastJsonOpenApi } from 'express-fast-json-stringify';
import document from './openapi.json' with { type: 'json' };
const app = express();
// One middleware for the whole app.
app.use(fastJsonOpenApi(document));
app.get('/users/:id', (req, res, next) => {
try {
// Serialized with the schema of `get /users/{id}` -> `200`.
res.fastJson(user);
} catch (error) {
next(error);
}
});
app.post('/users', (req, res, next) => {
try {
// ...and this one with the schema of `post /users` -> `201`.
res.status(201).fastJson(user);
} catch (error) {
next(error);
}
});The document is a plain object, so this works with whatever produces yours:
| Tool | How to pass it |
|---|---|
swagger-jsdoc |
fastJsonOpenApi(swaggerJsdoc(options)) |
swagger-ui-express |
the same object you hand to swaggerUi.setup(document) |
express-openapi-validator |
the same document you pass as apiSpec (or the parsed YAML/JSON file) |
tsoa |
the generated swagger.json |
| hand written | import document from './openapi.json' with { type: 'json' } |
There is no dependency on any of them: the middleware only reads paths,
components.schemas (OpenAPI 3.x) and definitions (Swagger 2.0).
- The operation comes from the matched Express route, so
/users/:idunder a router mounted at/apilooks up/api/users/{id}. Parameter modifiers (:id?,:id(\d+)) are ignored, as OpenAPI has no equivalent. AHEADrequest falls back to thegetoperation, the way Express does. - The response is matched most specific first: the exact status code, then
the wildcard range (
2XX), thendefault.res.status(404).fastJson(...)therefore serializes with the404schema. $refis resolved against the document, including recursive references, so#/components/schemas/Userand#/definitions/Userboth just work.- OpenAPI 3.0 and 3.1 are both supported;
nullable: trueis honoured and annotation keywords (example,discriminator,xml, ...) are ignored.
Routes the document does not describe fall back to res.json(), so adding the
middleware app-wide cannot break an undocumented endpoint. Pass
{ strict: true } to get an error instead of a silent fallback.
// Read a different media type, pin an operation, forward fast-json-stringify options
app.use(fastJsonOpenApi(document, { contentType: 'application/vnd.api+json' }));
app.get('/v2/people/:id', fastJsonOpenApi(document, { path: '/users/{id}', method: 'get' }), handler);Because the schema decides what gets written, a property that is not in the
document can never reach a client — npm run example:openapi shows a
passwordHash being dropped from an otherwise ordinary response object.
Everything above needs you to call res.fastJson(). In an existing codebase
that means editing every res.json() call site, which is a lot of churn for a
serialization change. overrideJson removes that step:
app.use(fastJsonOpenApi(document, { overrideJson: true }));
// Unchanged route. It is now serialized from the `get /users/{id}` -> `200`
// schema, with no edit at the call site.
app.get('/users/:id', (req, res) => res.json(user));Only res.json is replaced. Express implements res.send(object) by calling
res.json(object), so both entry points are covered by the one hook, while
res.send of a string or a Buffer is left alone.
The override cannot break a route. It steps aside, and the stock
res.json() runs, whenever:
- the document describes no schema for that route and status code;
- the app sets
json replacer,json spacesorjson escape— those change the bytesres.json()writes and a compiled serializer cannot reproduce them; - the serializer rejects the body, for instance because a required property is
missing. Pass
onErrorto be told when that happens:
app.use(
fastJsonOpenApi(document, {
overrideJson: true,
onError: (error, req) => logger.warn({ error, url: req.originalUrl }, 'schema mismatch'),
}),
);strict does not apply here: it governs explicit res.fastJson() calls, while
an overridden res.json() always falls back rather than throw.
fastJsonSchema accepts overrideJson too, with one difference: a single
schema describes the successful payload, so only 2xx responses take the fast
path. An error body would otherwise be rewritten into the shape of the success
schema.
app.get('/users/:id', fastJsonSchema(userSchema, { overrideJson: true }), (req, res) => {
res.json(user); // serialized through the schema
res.status(500).json({ error: 'boom' }); // untouched, stock res.json()
});Using express-fast-json-stringify offers several benefits:
- Increased Speed: a compiled serializer only writes the properties the schema describes, so the more your objects carry that the response does not need, the more time it saves.
- Reduced CPU Usage: faster serialization means less CPU time spent on processing, allowing your server to handle more concurrent requests.
- Consistency and Validation: by defining JSON schemas, you ensure that the serialized data adheres to a predefined structure, improving data consistency and reducing the likelihood of errors — and properties missing from the schema never leak into a response.
How much you gain depends on the payload, and on a current V8 it is not a win across the board. Measured on Node.js 26 by npm run example:
| Case | fast-json-stringify vs JSON.stringify |
|---|---|
| objects carrying fields outside the schema | much faster (≈9x when 17 of 20 are dropped) |
| a single small object | comparable |
| every field serialized | comparable |
| long strings | slower |
Run npm run example to get the numbers for your own Node.js version and payload shape before adopting it in a hot path.
Integrating express-fast-json-stringify into your Express.js application can provide substantial performance improvements when JSON serialization is a bottleneck and your schemas let the serializer skip work. It also guarantees that responses carry exactly the properties the schema describes, which is worth having on its own.
To start using express-fast-json-stringify, follow the steps outlined in this documentation, and enjoy the benefits of faster JSON serialization in your Express applications. For a runnable demo, open it on StackBlitz or run it locally from example/: npm install && npm run example.
This is an open-source project. Star this repository, if you like it, or even donate. Thank you so much!