transform-parse

v1.0.5
A transform stream that parses an incoming stream as JSON.
parse json stream transform

transform-parse

Build Status Coverage Status NPM version

A transform stream that parses an incoming stream as JSON.

Installation

$ npm install transform-parse --save

Example

var stream = require('stream');
var parse = require('transform-parse');
var source = stream.PassThrough();
var dest = stream.PassThrough({ objectMode: true });

source.pipe(parse()).pipe(dest);
source.end(new Buffer('{ "foo": "bar" }'));

dest.on('data', function(obj){
  // => { foo: 'bar' }
  console.log(obj);
});

API

var parse = transformParse()

Initialise a new TransformParse.

Testing

$ npm run test-spec

To generate a coverage report:

$ npm run test-cov
npm i transform-parse

Metadata

  • MIT
  • >= 0.10.0
  • Tane Morgan
  • released 11/30/2014

Downloads

Maintainers