Popularity
1.7
Stable
Activity
0.0
Stable
74
6
14

Code Quality Rank: L5
Monthly Downloads: 0
Programming language: JavaScript
License: MIT License
Tags: Streams    
Latest version: v1.1.1

stream-combiner2 alternatives and similar modules

Based on the "Streams" category.
Alternatively, view stream-combiner2 alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of stream-combiner2 or a related project?

Add another 'Streams' Module

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


*Note that all licence references and agreements mentioned in the stream-combiner2 README section above are relevant to that project's source code only.