How to use JSONStream.stringify:
723 724 725 726 727 728 729 730 731 732 733 734 735
throw error } function streamSerializer() { return JSONStream.stringify() } function fastNdjsonSerializer(stringify) { function ndjsonTransform(obj, encoding, callback) {
2
32
12
See more examples
How to use JSONStream.parse:
GitHub: shengchl/blockpressxxi
114 115 116 117 118 119 120 121 122 123 124 125 126 127
Utils.parseStream = function(stream, options, onRequest) { var onError = _.once(onRequest); var onSuccess = _.partial(onRequest, null); var result = JSONStream.parse(); result.on('data', function(data) { // apply reviver walk function to prevent stringify/parse again