1.0.0 • Published 11 years ago
json-stream v1.0.0
json-stream 
New line-delimeted JSON parser with a stream interface.
Installation
npm install json-streamUsage
var JSONStream = require('json-stream');
var stream = JSONStream();
stream.on('data', function (chunk) {
console.dir(chunk);
});
stream.write('{"a":');
stream.write('42}\n');
stream.write('{"hel');
stream.write('lo": "world"}\n');Will output:
{ a: 42 }
{ hello: 'world' }If invalid JSON gets written, it's silently ignored.