Skip to content

Latest commit

 

History

History
116 lines (99 loc) · 5.29 KB

streams.md

File metadata and controls

116 lines (99 loc) · 5.29 KB

Bookmarks tagged [streams]

https://github.com/caolan/highland

Manages synchronous and asynchronous code easily, using nothing more than standard JavaScript and Node-like Streams.


https://github.com/rvagg/through2

Tiny wrapper around streams2 Transform to avoid explicit subclassing noise.


https://github.com/hughsk/from2

Convenience wrapper for ReadableStream, inspired by through2.


https://github.com/sindresorhus/get-stream

Get a stream as a string or buffer.


https://github.com/sindresorhus/into-stream

Convert a buffer/string/array/object into a stream.


https://github.com/mafintosh/duplexify

Turn a writeable and readable stream into a single streams2 duplex stream.


https://github.com/mafintosh/pumpify

Combine an array of streams into a single duplex stream.


https://github.com/mafintosh/peek-stream

Transform stream that lets you peek the first line before deciding how to parse it.


https://github.com/maxogden/binary-split

Newline (or any delimiter) splitter stream.


https://github.com/jahewson/node-byline

Super-simple line-by-line Stream reader.


https://github.com/sindresorhus/first-chunk-stream

Transform the first chunk in a stream.


https://github.com/sindresorhus/pad-stream

Pad each line in a stream.


https://github.com/feross/multistream

Combine multiple streams into a single stream.


https://github.com/substack/stream-combiner2

Turn a pipeline into a single stream.


https://github.com/nodejs/readable-stream

Mirror of Streams2 and Streams3 implementations in core.


https://github.com/almost/through2-concurrent

Transform object streams concurrently.