into-stream alternatives and similar modules
Based on the "Streams" category.
Alternatively, view into-stream 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. -
pumpify
Combine an array of streams into a single duplex stream using pump and duplexify -
duplexify
Turn a writable and readable stream into a streams2 duplex stream with support for async initialization and streams1/streams2 input -
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 -
through2-concurrent
Simple Node.JS stream (streams2) Transform that runs the transform functions concurrently (with a set max concurrency) -
graphicsmagick-stream
Fast conversion/scaling of images using a pool of long lived GraphicsMagick processes. -
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
Appwrite - The Open Source Firebase alternative introduces iOS support
* 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 into-stream or a related project?
README
into-stream 
Convert a string/promise/array/iterable/asynciterable/buffer/typedarray/arraybuffer/object into a stream
Correctly chunks up the input and handles backpressure.
Install
$ npm install into-stream
Usage
const intoStream = require('into-stream');
intoStream('unicorn').pipe(process.stdout);
//=> 'unicorn'
API
intoStream(input)
Type: Buffer | TypedArray | ArrayBuffer | string | Iterable<Buffer | string> | AsyncIterable<Buffer | string> | Promise
\
Returns: Readable stream
Adheres to the requested chunk size, except for array
where each element will be a chunk.
intoStream.object(input)
Type: object | Iterable<object> | AsyncIterable<object> | Promise
\
Returns: Readable object stream
Related
- to-readable-stream - Simpler version of this module