ndjson-parse

1.0.4 • Public • Published

Build Status NPM Version

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)

/ndjson-parse/

    Package Sidebar

    Install

    npm i ndjson-parse

    Weekly Downloads

    3,764

    Version

    1.0.4

    License

    ISC

    Unpacked Size

    5.36 kB

    Total Files

    8

    Last publish

    Collaborators

    • alonmiz