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

Readme

Keywords

Package Sidebar

Install

npm i json-stream-to-object

Weekly Downloads

8

Version

1.1.0

License

MIT

Last publish

Collaborators

  • yoshuawuyts