pipe-errors

Handle errors on piping streams and pipe error to the end.

Usage no npm install needed!

<script type="module">
  import pipeErrors from 'https://cdn.skypack.dev/pipe-errors';
</script>

README

pipe-errors

Handle errors on piping streams and pipe error to the end.

NPM version Build Status

Install

Install with npm

npm install pipe-errors

Usage

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)`

API

const pipeErrors = require('pipe-errors')

pipeErrors(stream1, stream2, ..., streamN)

pipeErrors([stream1, stream2, ..., streamN])

return the last stream(streamN). When one stream emit a error, the error will be piped to next, and next until the last.

License

MIT © Teambition