array-to-ndjson

1.0.1 • Public • Published

array-to-ndjson Build Status

Convert an array of objects to a stream of ndjson data.

Install

$ npm install array-to-ndjson

Usage

const arrayToNdjson = require('array-to-ndjson');
 
arrayToNdjson([{name: 'Foo', value: 10}]);
    // => Readable Stream
 
 
// Example piping the stream
 
arrayToNdjson([{name: 'Foo', value: 10}, {name: 'Bar', value: 9}])
    .pipe(fs.createWriteStream('foo.json'))
    // => File will contain:
    //
    // {"name":"Foo","value":10}
    // {"name":"Bar","value":9}
 

API

arrayToNdjson(input)

input

Type: Object[]

Array of objects that you want to convert to NDJSON format.

License

MIT © Simon

Package Sidebar

Install

npm i array-to-ndjson

Weekly Downloads

964

Version

1.0.1

License

MIT

Last publish

Collaborators

  • simonja