Handle errors on piping streams and pipe error to the end.
Install with npm
npm install pipe-errors
const pipeErrors = require('pipe-errors')
stream1.pipe(stream2).pipe(stream3)
pipeErrors(stream1, stream2, stream3)
// equal to `pipeErrors([stream1, stream2, stream3])`
Composite:
const pipeErrors = require('pipe-errors')
stream1.pipe(stream2)
pipeErrors(stream1, stream2)
//... some other
stream2.pipe(stream3)
pipeErrors(stream2, stream3)
// equal to `pipeErrors(stream1, stream2, stream3)`
const pipeErrors = require('pipe-errors')
return the last stream(streamN). When one stream emit a error, the error will be piped to next, and next until the last.
MIT © Teambition