bubble-stream-error
Bubble errors from an array of streams to a master/top stream
Last updated 10 years ago by alessioalex .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install bubble-stream-error 
SYNC missed versions from official npm registry.

bubble-stream-error

Node module for bubbling errors from 'sub-streams' to a master stream.

build status

examples

This is what you would normally do:

randomStream.pipe(colorizeStream).pipe(choppedStream).pipe(finalStream);

// assign an error handler on each stream
[randomStream, colorizeStream, choppedStream, finalStream].forEach(function(stream) {
  stream.on('error', function handleError(err) {
    // ...
  });
});

With bubble-stream-error:

var bubbleError = require('bubble-stream-error');

// ...

bubbleError(randomStream, colorizeStream, choppedStream, finalStream);
randomStream.pipe(colorizeStream).pipe(choppedStream).pipe(finalStream);

// assign a single error handler instead of 4
finalStream.on('error', function handleAllStreamErrors(err) {
  // ...
});

tests

npm test

License

MIT

Current Tags

  • 1.0.0                                ...           latest (10 years ago)

2 Versions

  • 1.0.0                                ...           10 years ago
  • 0.0.1                                ...           13 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 1
Last Day 0
Last Week 1
Last Month 2
Dependencies (2)
Dev Dependencies (8)

Copyright 2013 - present © cnpmjs.org | Home |