stream-combiner2

This is a sequel to [stream-combiner](https://npmjs.org/package/stream-combiner) for streams3.

MIT 5 个版本
安装
npm install stream-combiner2
yarn add stream-combiner2
pnpm add stream-combiner2
bun add stream-combiner2
README

stream-combiner2

This is a sequel to stream-combiner for streams3.

var combine = require('stream-combiner2')

Combine (stream1,...,streamN)

Turn a pipeline into a single stream. Combine returns a stream that writes to the first stream and reads from the last stream.

Streams1 streams are automatically upgraded to be streams3 streams.

Listening for 'error' will recieve errors from all streams inside the pipe.

var Combine = require('stream-combiner')
var es      = require('event-stream')

Combine(                                  // connect streams together with `pipe`
  process.openStdin(),                    // open stdin
  es.split(),                             // split stream to break on newlines
  es.map(function (data, callback) {      // turn this async function into a stream
    var repr = inspect(JSON.parse(data))  // render it nicely
    callback(null, repr)
  }),
  process.stdout                          // pipe it to stdout !
)

License

MIT

版本列表
1.1.1 2015-10-16
1.1.0 2015-10-16
1.0.2 2014-09-30
1.0.1 2014-07-03
1.0.0 2014-07-03