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.
-
Highland.js
High-level streams library for Node.js and the browser -
through2
Tiny wrapper around Node streams2 Transform to avoid explicit subclassing noise -
concat-stream
writable stream that concatenates strings or data and calls a callback with the result -
multistream
A stream that emits multiple other streams one after another (streams3) -
scramjet
Public tracker for Scramjet Cloud Platform, a platform that bring data from many environments together. -
duplexify
Turn a writable and readable stream into a streams2 duplex stream with support for async initialization and streams1/streams2 input -
pumpify
Combine an array of streams into a single duplex stream using pump and duplexify -
into-stream
Convert a string/promise/array/iterable/asynciterable/buffer/typedarray/arraybuffer/object into a stream -
from2
Convenience wrapper for ReadableStream, with an API lifted from "from" and "through2" -
binary-split
a fast newline (or any delimiter) splitter stream - like require('split') but specific for binary data -
graphicsmagick-stream
Fast conversion/scaling of images using a pool of long lived GraphicsMagick processes. -
through2-concurrent
Simple Node.JS stream (streams2) Transform that runs the transform functions concurrently (with a set max concurrency) -
peek-stream
Transform stream that lets you peek the first line before deciding how to parse it -
first-chunk-stream
Transform the first chunk in a stream
AWS Cloud-aware infrastructure-from-code toolbox [NEW]
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of stream-combiner2 or a related project?
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.