stream-aqueduct
v1.0.1
Published
Install:
Readme
Stream-Aqueduct
Install:
$ npm install --save stream-aqueductConstruct a pipeline of streams by passing an array of streams:
var aqueduct = require('stream-aqueduct')
var pipeline = (new) aqueduct([
jsonStream
, validationStream
, stringifyStream
])
process.stdin
.pipe(pipeline)
.pipe(process.stdout)
