npm install buffer-json-streamBuffer streaming JSON. Readable stream pipes in chunks of JSON, buffer-json-stream pipes out all that JSON buffered into one stream chunk.
```
npm install buffer-json-stream --save
Used as a normal Transform stream.
`javascript
someReadableStream.
pipe(bufferJsonStream()).
pipe(process.stdout);
``