ndjson-parse
v1.0.4
Published
parse Newline delimited JSON as array of json
Downloads
17,826
Readme
Simple ndjson Parser
- NDJSON - Newline delimited JSON
Specs
https://github.com/ndjson/ndjson-spec
Usage
const ndjsonParser = require('ndjson-parse');
const ndjsonString = `{"some":"thing"}
{"foo":17,"bar":false,"quux":true}
{"may":{"include":"nested","objects":["and","arrays"]}}`
const parsedNdjson = ndjsonParser(ndjsonString);
console.log(parsedNdjson[0].some) // thing
Example NDJSON
{"some":"thing"}
{"foo":17,"bar":false,"quux":true}
{"may":{"include":"nested","objects":["and","arrays"]}}
(with \n
line separators)