0.0.0 • Published 11 years ago

json-body v0.0.0

Weekly downloads
4
License
-
Repository
github
Last release
11 years ago

JSON Body

Concat stream and parse JSON

Example

var fs = require('fs')
  , jsonBody = require('./')

var stream = fs.createReadStream(__dirname + '/package.json')

jsonBody(stream, function (err, body, stream) {
  if (err) throw err
  console.log(body)
})
list.pipe(process.stdout)

Install

$ npm install json-body

License

MIT