json-list-stream

0.0.6 • Public • Published

JSON List Stream

json-list-stream

Example

var List = require('json-list-stream')

var list = new List()
  , i = 0

list.set('hello', { name: 'World' })
list.write({ 'n': ++i })
list.write({ 'n': ++i })
list.set('count', i)
list.end()

list.pipe(process.stdout)
$ node example.js

{"hello":{"name":"World"},"rows":[
{"n":1},
{"n":2}
],"count":2}

Install

$ npm install json-list-stream

Test

$ npm test

License

MIT

Package Sidebar

Install

npm i json-list-stream

Weekly Downloads

2

Version

0.0.6

License

MIT

Last publish

Collaborators

  • tellnes