Streaming

Error handling is explicit: catch failures at any stage, log them, and route bad events to a dead-letter queue without stopping the main pipeline.

Each event flows through a series of transformation stages, with built-in support for filtering, mapping, and conditional routing.

const throttled = stream.throttle( rps: 100, burst: 200 ); const deduplicated = stream.dedup( key: 'event.id', window: 60000 );

Rate limiting is built in: configure token buckets, sliding windows, or adaptive limits that respond to backpressure.

Streaming

Error handling is explicit: catch failures at any stage, log them, and route bad events to a dead-letter queue without stopping the main pipeline.

stream.pipe(map(e => e.data), buffer(100, 5000), flatMap(batch => fetch('/api/bulk',  body: JSON.stringify(batch) ))).catch(console.error);

Graceful shutdown waits for in-flight events to complete, then closes connections cleanly—no lost events, no crashes.

See also

My account