ndjson

Streaming newline delimited json parser + serializer

BSD-3-Clause 12 个版本
安装
npm install ndjson
yarn add ndjson
pnpm add ndjson
bun add ndjson
README

ndjson

Streaming newline delimited json parser + serializer. Available as a JS API and a CLI.

NPM

Usage

const ndjson = require('ndjson')

ndjson.parse([opts])

Returns a transform stream that accepts newline delimited json buffers and emits objects of parsed data.

Example file:

{"foo": "bar"}
{"hello": "world"}

Parsing it:

fs.createReadStream('data.txt')
  .pipe(ndjson.parse())
  .on('data', function(obj) {
    // obj is a javascript object
  })
Options
  • strict can be set to false to discard non-valid JSON messages
  • All other options are passed through to the stream class.

ndjson.stringify([opts])

Returns a transform stream that accepts JSON objects and emits newline delimited json buffers.

example usage:

var serialize = ndjson.serialize()
serialize.on('data', function(line) {
  // line is a line of stringified JSON with a newline delimiter at the end
})
serialize.write({"foo": "bar"})
serialize.end()
Options

Options are passed through to the stream class.

LICENSE

BSD-3-Clause

版本列表
2.0.0 2020-08-15
1.5.0 2016-12-05
1.4.4 2016-12-05
1.4.3 2015-11-01
1.4.2 2015-09-16
1.4.1 2015-06-22
1.4.0 2015-06-22
1.3.1 2015-06-17
1.3.0 2014-11-18
1.2.3 2014-09-30
1.2.2 2014-09-23
1.2.1 2014-09-23