1.0.1 • Published 10 years ago

stream-aqueduct v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
10 years ago

Stream-Aqueduct

Install:

$ npm install --save stream-aqueduct

Construct 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)