Rivers are a style of object streaming (observables) that provide:
- Simple concurrency control
- Automatic resource management
- A familiar, intuitive, and powerful API
- Seamless integration with itself, promises, and the Node.js ecosystem (see below)
npm install --save wise-river
const River = require('wise-river');
const messages = new River((resolve, reject, write, free) => {
const socket = connectToServer();
socket.on('data', write);
socket.on('end', resolve);
socket.on('error', reject);
free(() => socket.destroy());
});
messages
.map(parseMessages)
.forEach(logMessages)
.consume(processMessages)
.then(() => console.log('connection ended!'));
Most object streams in Node.js are highly opinionated, and they often don't compose well with promises (the sanctioned asynchronous primitive for JavaScript). Even the streams provided by the standard library exhibit many of these problems:
- They usually require subclassing or other boilerplate to accomplish simple tasks
- They don't propagate errors, destroying the composability promised by
.pipe()
- Their composability with the rest of the Node.js ecosystem is often weak and limited
Object streams should feel like regular promises, but provide the ability to easily operate on promises as a collection (just like arrays of values).
Unlike many styles of streams, a river does not preserve sequence/order, allowing for maximum concurrency by default. However, rivers give you total concurrency control, and therefore they can be made to process items in sequence if desired (see Ordered Rivers). This flexibility makes accomplishing complicated tasks incredibly easy, making rivers feel very powerful when compared to other types of streams or observables.
Rivers inherit from the native Promise
(WisePromise
). If an error occurs in a river, the river will be rejected, along with all rivers that originate from it. If no error occurs, the river will be fulfilled with undefined
when all of its items have been consumed.
Rivers are also async iterable objects, and can be used in for await
loops.
for await (const item of River.from([1, 2, 3])) {
console.log(item);
}
// => 1
// => 2
// => 3
When a river is done being processed, it has the ability to destroy the underlying resources that the river relied on. If the river was spawned by reading from an existing river ("river chaining"), it can propagate cancellation upstream to the source. You don't need to remember to manually close resource handles—it all happens automatically. Even if you fork a river into multiple consumers, rivers are smart enough to keep the source alive until all consumers are finished.
Creates and returns a new river. handler
must be a function with the following signature:
function handler(resolve, reject, write, free)
write(x)
is used to give values (or promises of values) to the river. The river will not be fulfilled until all written values have been consumed. After the river is resolved, this becomes a no-op.resolve(x)
behaves the same as with regular promises, except that the fulfillment value of a River is alwaysundefined
. The river's fulfillment can still be delayed by passing a promise. After invoking this function you cannotwrite
any more values to the river.reject(x)
behaves the same as with regular promises. After a river is rejected, all processing stops and any values in the river are discarded.free(fn)
is used to specify destructor functions, which will be invoked when the river is closed (regardless of success or failure). This is for freeing the underlying resources that the river relied on (if any).
This is the most primitive method of a River. All high-level methods are derived from here.
Registers the callback
function to be invoked for each item that enters the river. The callback can return a promise to indicate that it is "processing" the item. If a concurrency
number is provided, only that many items will be processed at a time. The default is 0
which signifies infinite concurrency.
If the callback
throws an exception or returns a rejected promise, the river will stop and will be rejected with the same error.
Rivers will buffer their content until pump()
(or a higher-level method of consumption) is used.
Each river can only have a single consumer. If you try to use pump()
on the same river twice, a warning will be emitted and the second consumer will never receive any data. In other words, the river will look like an empty river (except to the first consumer). This way, consumers either get "all or nothing" — it's impossible to receive a partial representation of the river's content.
This method returns a function ("cancel"
). If cancel
is called before the river is resolved, the river will be rejected with a Cancellation
error, which is just a subclass of Error
. If you're piping the river's content to a new river, you should pass cancel
to the fourth parameter of the River constructor (free()
). This allows consumers downstream to cancel the river chain if they are no longer interested in it.
If you try to use pump()
on same river twice, invocations after the first will return a no-op function; only the real consumer has authority over the river's cancellation.
Cancellation
is available at River.Cancellation
.
Forks a river into several destinations and returns an array of those rivers. By default it will fork into two branches, but you can specify exactly how many branches you want.
Transforms the river's data through the provided callback
function, and passes the resulting data to a new river returned by this method. If the callback
returns a promise, its value will be awaited before being passed to the destination river.
If a concurrency
number is provided, only that many items will be processed at a time. The default is 0
which signifies infinite concurrency.
If the callback
throws an exception or returns a rejected promise, processing will stop and the river will be rejected with the same error.
River.from(['foo.txt', 'bar.txt'])
.map(readFile)
.consume(console.log);
// => "this is bar!"
// => "this is foo!"
The .map()
method also doubles as a stereotypical flatMap()
. If the callback
returns a River, its values will be forwarded to the river returned by this method.
Similar to .map()
, except the river's data will not be changed. If the callback returns a promise, it will still be awaited, but it will not determine the data that is passed to the destination river. This method is primarily used for side effects.
Similar to .forEach()
, but the items will be filtered by the provided callback function (just like Array#filter
). Filtering will occur based on the truthiness of the callback's return value. If the callback returns a promise, its value will be awaited before being used in the filtering process.
Returns a new river with the same content as the current one, except that it never emits two consecutive items of equal value. By default the ===
operator is used for checking equality, but you can optionally pass in a custom equalsFunction
to be used instead.
equalsFunction
has the signature: function equals(previousValue, nextValue) -> boolean
Returns a new river that will not emit more than one item every specified number of milliseconds
. If the river receives data too quickly, some data will be discarded.
Returns a new river that will defer its latest data event until the specified number of milliseconds
has passed since receiving data. If the river receives data too quickly, all data (except the most recent) will be discarded.
Returns a new river that will be rejected with a TimeoutError
if the specified number of milliseconds
passes without the river receiving any new data. The timer starts immediately when this method is invoked.
If you specify a string reason
, the TimeoutError
will have reason
as its message. Otherwise, a default message will be used. If reason
is an instanceof Error
, it will be used instead of a TimeoutError
.
TimeoutError
is available at River.TimeoutError
.
Forwards the river's content to a new river until the provided callback
function returns a falsey value (or a promise for a falsey value), at which point the returned river will be fulfilled and the source river will be cancelled.
The callback
will be invoked once for each item that enters the river.
If the source river is fulfilled or rejected before the callback
returns a falsey value, the returned river will also be fulfilled or rejected, respectively.
Forwards the river's content to a new river until the given promise
is fulfilled, at which point the returned river will be fulfilled and the source river will be cancelled.
If the promise
is rejected before this river resolves, the returned river will be rejected with the same error. If the source river is fulfilled or rejected before the promise
resolves, the returned river will also be fulfilled or rejected, respectively.
Returns a new river with the same content as the current one, except that if the river chain downstream is cancelled, the source river will not be cancelled.
Similar to .forEach()
, but the river's content is discarded instead of being piped to a new river. This method returns a promise which will be fulfilled or rejected as the river is fulfilled or rejected.
new River(infiniteSource)
.consume(processData);
Applies the callback
function against an accumulator and each piece of data in the river. This method returns a promise for the final result of the reduction. If no initialValue
is provided and the river only receives one item, that item will become the fulfillment value without invoking the callback function. If no initialValue
is provided and the river receives no items, the promise will be rejected with a NoDataError
.
NoDataError
is available at River.NoDataError
.
If the initialValue
is a promise, its value will be awaited before starting the reduction process. If the callback
returns a promise, it will be awaited before processing the next piece of data against the accumulator. Keep in mind that the callback
function will process data in the order that the river receives it.
callback
has the signature: function callback(accumulator, value)
River.from(['Jonathan', 'Robert', 'Jennifer'])
.map(fetchNickname)
.reduce((a, b) => a + ', ' + b)
.log();
// => "Jen, John, Rob"
Constructs an array of every item that enters the river, and returns a promise for that array. The items in the array will appear in the order that the river received them.
River.from(['a', 'b', 'c'])
.forEach(delayByRandomAmount)
.map(str => str + str)
.all()
.log();
// => ["bb", "cc", "aa"]
Returns a promise for the first item in the river to match the predicate
function. When a match is found, the returned promise will be fulfilled with that item and the river will be cancelled.
The predicate
function will be invoked for each item in the river, and should return true
if it's a match, or false
otherwise. It can also return a promise for true
or false
, instead.
If the river fulfills but no items matched the predicate
, the returned promise will be rejected with a NoDataError
.
NoDataError
is available at River.NoDataError
.
Returns a promise for a boolean that indicates whether or not the given value is found in the stream. If found, the returned promise will be fulfilled with true
and the river will be cancelled. Otherwise, the returned promise will be fulfilled with false
. The given value
can be a promise, in which case its value is awaited before the river is searched.
By default the ===
operator is used for checking equality, but you can optionally pass in a custom equalsFunction
to be used instead.
equalsFunction
has the signature: function equals(expectedValue, actualValue) -> boolean
If used without any arguments, this method returns a promise for the first item in the river. If the river never received any data, the promise will be rejected with a NoDataError
.
If a number
is provided, the returned promise will instead be fulfilled with an array of the first number
of items in the river (or less, if the river gets fulfilled without receiving that many items).
In either case, the river will be cancelled when the returned promise is resolved.
NoDataError
is available at River.NoDataError
.
If used without any arguments, this method returns a promise for the last item in river. If the river never received any data, the promise will be rejected with a NoDataError
.
If a number
is provided, the returned promise will instead be fulfilled with an array of the last number
of items in the river (or less, if the river gets fulfilled without receiving that many items).
NoDataError
is available at River.NoDataError
.
Rivers cannot be fulfilled until all of their data has been consumed. Sometimes the data is consumed by a new river (such as in .map()
), while other times it is consumed by a process for a single value (.all()
, .reduce()
).
.drain()
is the simplest method of consumption, simply discarding each item in the river. The returned promise will be fulfilled or rejected as the river is fulfilled or rejected.
new River(infiniteSource)
.forEach(processData)
.drain();
Shorthand for river.pump(() => {})()
. This method will immediately cancel the river. If the river was previously consumed, this is a no-op; only the real consumer has authority over the river's cancellation.
Keep in mind, if the river does not have a rejection handler, the cancellation will still cause an unhandledRejection
. Therefore it's common to use this method in conjunction with .catchLater()
.
river.catchLater().drop();
Returns a new river that is rejected with the given reason
.
Returns a new river that never emits any data and never resolves.
Returns a new river that is already fulfilled and never emits any data.
Returns a new river that will simply emit the given value
and then become fulfilled. If the given value
is a promise, it will be awaited before being written to the river.
Returns a new river containing the contents of the given iterable
object. Promises found in the iterable
object are awaited before being written to the river.
Constructs a new river that will emit undefined
upon every interval of milliseconds
.
Returns a new river that contains the combination of all the values of all the given rivers. The returned river will not be fulfilled until all the given rivers have been fulfilled. If any of the given rivers are rejected, this river is rejected too.
You can pass an array of rivers or pass them as individual arguments (or a mix thereof).
Converts a Node.js style stream or an async iterable object to a river.
Currently, only one option is supported:
decouple
- Setting this option to
true
means the resulting river will not destroy the source when the river becomes fulfilled or rejected/cancelled. This can be useful, for example, when riverifying one side of a duplex stream (since writing in the other direction may still be possible).
- Setting this option to
Returns whether the given value is a river. This is useful for differentiating between rivers and regular promises.
After loading this package, WisePromise
will be augmented with the .stream()
method, which returns a new river containing the eventual contents of the iterable
object that the promise is fulfilled with.
If the promise is fulfilled with something other than an iterable
object, the river will be rejected with a TypeError
.
If you need a river to process its data in order, just set its concurrency
to 1
.
new River(source)
.filter(1, sanitizeData)
.map(1, processData)
.forEach(1, saveData)
.drain();
Some methods don't have concurrency control (.reduce()
, .distinct()
, .fork()
, etc.). But don't worry, these methods will maintain order automatically.