stream-to-json

0.0.1 • Public • Published

stream-to-json

Deserialize JSON from a stream

build status

testling badge

Example

var toJSON = require('stream-to-json');
var request = require('request');
 
toJSON(request('/some/url.json'), function(err, json) {
  if (err) throw err;
  console.log(json);
});

API

toJSON(stream, fn)

Read all from stream, then JSON.parse and call fn with the result. If there's an Error in the stream itself, or parsing the JSON, an error will be passed.

Installation

$ npm install stream-to-json

License

MIT

Dependencies (2)

Dev Dependencies (2)

Package Sidebar

Install

npm i stream-to-json

Weekly Downloads

39

Version

0.0.1

License

MIT

Last publish

Collaborators

  • juliangruber