stream-json is a micro-library of components for processing JSON files and streams, with a minimal memory footprint. Point it at a document far larger than available memory and it streams straight through — you pick out only the parts you care about and handle them one at a time, instead of loading the whole thing with JSON.parse. Even individual keys, strings, and numbers can be streamed piece by piece, and a SAX-inspired event API is included.
Each component is one stage of a pipeline: the parser turns text into a token stream, filters trim and reshape that stream on the fly, and streamers assemble the surviving tokens back into JavaScript objects. They compose with each other and with your own code through stream-chain, the zero-dependency library this one is built on; TypeScript typings are bundled.
Why it might be for you:
- Surgical.
pick,ignore,replace, andfilterkeep just the subobjects you want out of a massive document and drop the rest — the bytes you skip are never assembled into memory. - Composable. Every component is an ordinary pipeline stage. Mix them with each other, with plain functions and generators, and with any Node or Web stream.
- Performance-minded. The parser and assemblers are measured and tuned along the hot paths. Real numbers depend on your data and hardware, so benchmark on your own.
- Solid. ESM, bundled TypeScript typings, and a broad test suite exercised across Node, Bun, Deno, and the browser.
Pull one array out of a JSON document larger than memory and tally it — one record at a time, in constant memory:
import {parser} from 'stream-json';
import {pick} from 'stream-json/filters/pick.js';
import {streamArray} from 'stream-json/streamers/stream-array.js';
import chain from 'stream-chain';
import fs from 'node:fs';
// data.json: { "meta": {...}, "data": [ ...millions of records... ] }
const pipeline = chain([
fs.createReadStream('data.json'), // a file far bigger than RAM is fine
parser(),
pick({filter: 'data'}), // descend into "data", ignore everything else
streamArray() // emit one array element at a time
]);
const byDepartment = {};
pipeline.on('data', ({value}) => {
byDepartment[value.department] = (byDepartment[value.department] ?? 0) + 1;
});
pipeline.on('end', () => console.log(byDepartment));Each stage is a building block; stream-chain wires them into one stream and handles the streaming and backpressure. To read straight from a file you can drop createReadStream and use the Node-only parseFile(); to write a stream back to disk, use stringerToFile(). See Recipes for more.
npm install --save stream-jsonESM only; runs on actively-maintained Node, plus Bun and Deno — see Supported runtimes.
- Parsers — JSON, JSONL (the fast path for line-delimited data dumps), and JSONC (JSON with comments).
- Helpers for streamed objects — pick out the parts you want, assemble objects from tokens, output JSON back, and read or write files directly.
- Runtimes — works out of the box on Node (Node streams); browser-safe (Web Streams) and dependency-free Core (no streams) builds are there when you need them.
Want the details? Follow the links, or browse the wiki — index or search.
- stream-chain — the pipeline-composition substrate
stream-jsonis built on (wire functions, generators, and streams into one chain); also home to streaming JSONL. - stream-csv-as-json — streams huge CSV files in a
stream-json-compatible token format: rows as arrays of strings, or as objects when a header row is present.
BSD-3-Clause
- 3.4.0 Deprecated
stream-json/utils/{pipe,drain}— usestream-chain's generic helpers directly; the file-edge internals now delegate tostream-chain. - 3.3.0 File I/O components (
parseFile,stringerToFile,verifyFile), faithful JSONC comma round-trip (streamCommas/useCommas), JSONL delegated tostream-chain. - 3.2.0 Improvements in TS typings, faster JSON parser.
- 3.1.0 Web Streams parity sweep.
- 3.0.0 Moved to ESM using
stream-chain4.x. See Migrating from 2.x to 3.x. - 2.1.0 new: jsonc/Verifier — validates JSONC text with exact error locations. Parser performance improvements (pre-allocated token singletons).
- 2.0.0 major rewrite: functional API based on
stream-chain3.x, bundled TypeScript definitions. New: JSONC parser/stringer, FlexAssembler. See Migrating from 1.x to 2.x.
The full history is in the wiki: Release history.