buffer-json-stream

Buffer streamin JSON

Usage no npm install needed!

<script type="module">
  import bufferJsonStream from 'https://cdn.skypack.dev/buffer-json-stream';
</script>

README

buffer-json-stream

Buffer streaming JSON. Readable stream pipes in chunks of JSON, buffer-json-stream pipes out all that JSON buffered into one stream chunk.

Install

npm install buffer-json-stream --save

Usage

Used as a normal Transform stream.


someReadableStream.
  pipe(bufferJsonStream()).
  pipe(process.stdout);