1.0.1 • Published 5 years ago

json-stringify-trough v1.0.1

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

json-stringify-trough

npm

Known Vulnerabilities

Build Status

Coverage Status

Simply stringify a readable stream in objectMode and get that array as a complete valid JSON at readable side of transform stream.

Usefull if you want to do something like:

  res.set('Content-Type', 'application/json')
  readableObjectStream
    .pipe(new JSONStringifyTrough())
    .pipe(res)
    .on('error', ...)

Saves you 1 buffering in case where you would collect all objects into array and then JSON.stringify all that.

Write simple benchmark code and test different stringifiers

Fun with streams