Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

49 Commits

Repository files navigation

Streaming JSON.stringify()

NPM versionBuild statusTest coverageDependency StatusLicenseDownloads

Similar to JSONStream.stringify() except it is, by default, a binary stream, and it is a streams2 implementation.

Example

The main use case for this is to stream a database query to a web client. This is meant to be used only with arrays, not objects.

varStringify=require('streaming-json-stringify')app.get('/things',function(req,res,next){res.setHeader('Content-Type','application/json; charset=utf-8')db.things.find().stream().pipe(Stringify()).pipe(res)})

will yield something like

[
{"_id":"123412341234123412341234"}
,
{"_id":"123412341234123412341234"}
]

Separators

  • The stream always starts with '[\n'.
  • Documents are separated by '\n,\n'.
  • The stream is terminated with '\n]\n'.

Stringifier

By default, json-stringify-safe is used to convert objects into strings. This can be configured with options.stringifier.

API

Stringify([options])

Returns a Transform stream. The options are passed to the Transform constructor.

JSON.stringify options

You can override these:

varstringify=Stringify()stringify.replacer=function(){}stringify.space=2stringify.opener='['stringify.separator=','stringify.closer=']'stringify.stringifier=JSON.stringify

About

Streaming JSON.stringify()

Resources

Stars

60 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages