json-stream-to-object

1.1.0 • Public • Published

json-stream-to-object stability

npm version build status downloads js-standard-style

Parse a JSON stream into an object.

Usage

var toObject = require('json-stream-to-object')
var http = require('http')
 
http.createServer(function (req, res) {
  toObject(req, function (err, obj) {
    if (err) throw err
    console.log('json parsed', obj)
  })
}).listen(8080)

API

toObject(stream, [opts], cb(err, object))

Parse a stream of JSON to an object. Opts can be:

  • opts.limit: set a max size limit for the incoming data. Useful to prevent services getting DDoSed

License

MIT

/json-stream-to-object/

    Package Sidebar

    Install

    npm i json-stream-to-object

    Weekly Downloads

    6

    Version

    1.1.0

    License

    MIT

    Last publish

    Collaborators

    • yoshuawuyts