streaming-json-parser
v0.0.3
Published
A streaming JSON parser
Downloads
9
Readme
streaming-json-parser
This is a streaminig json parser that only parsers what you tell it.
The code is forked from https://github.com/alFReD-NSH/JSON-- and modified to work for me. It might not work for you.
Install
npm install streaming-json-parser
Example
var JSONParser = require('streaming-json-parser');
var request = require('request');
var through = require('through2');
var parser = new JSONParser(['rows', true, 'name']);
parser.onValue = console.log.bind(console);
request('http://somejson')
.pipe(through(function (chunk, done) {
parser.write(chunk);
done();
}));
Note that the parser.write
only accepts a Buffer instance.