end-of-stream-promise
v1.0.0
Published
Await the completion or erroring of a stream
Downloads
3,342
Maintainers
Readme
end-of-stream-promise
Await the completion or erroring of a stream
npm i -s end-of-stream-promise
const eosp = require('end-of-stream-promise')
const stream = getSomeStream()
try {
await eosp(stream)
} catch(e) {
console.log('Stream had an error!')
}
Check out the end-of-stream docs for more options.