0.1.2 • Published 7 years ago

bacon-node-stream v0.1.2

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

bacon-node-stream

Utility for creating Node.js readable streams from Bacon streams and vice versa.

Usage

Install this package and baconjs, that is this package's peer dependency.

API

readableToBacon(stream: Readable, options?: ReadableOptions): Bacon.EventStream<any, any>

Creates a new Node.js stream that is exposed as a Bacon event stream and pipes stream into it. Use this function for creating a Bacon EventStream from a Readable stream. You must provide the options accordingly, so if stream uses object mode, you must also specify it here, and so on.

Note to TypeScript users: Readable's values are not typed, so you must cast or determine the correct type yourself (use .map()).

baconToReadable(stream: Bacon.EventStream<any, any>, options?: ReadableOptions): Readable {

Wraps a Bacon event stream as a Node.js Readable stream. If the Readable is paused, all values and the possible end event of the stream are buffered until the Readable is resumed. The exception to this are error events, that are emitted immediately when they occur in the Bacon stream. Remember to provide options if your stream uses the object mode.