3.0.0 • Published 4 years ago

stream-to-promise v3.0.0

Weekly downloads
150,968
License
MIT
Repository
github
Last release
4 years ago

stream-to-promise Build Status

Convert streams (readable or writable) to promises

Installing

npm install --save stream-to-promise

Examples

Readable Streams

streamToPromise(readableStream).then(function (buffer) {
  // buffer.length === 3
})
readableStream.emit('data', new Buffer())
readableStream.emit('data', new Buffer())
readableStream.emit('data', new Buffer())
readableStream.emit('end') // promise is resolved here

Writable Streams

streamToPromise(writableStream).then(function () {
  // resolves undefined
})
writableStream.write('data')
writableStream.end() // promise is resolved here

Error Handling

const err = new Error()
streamToPromise(stream).catch(function (error) {
  // error === err
})
stream.emit('error', err) // promise is rejected here
@ismay/morpheus-cli@ismay/synesthesiabalena-cligatsby-plugin-s3-html-last@heh/nrugo-filesystemrugo-mongodbfun-runtimes-test@infinitebrahmanuniverse/nolb-stream-toepler@everything-registry/sub-chunk-2834desolidscowsign-addonshimo-fundtd2mysqldynamodbdynamodb-litedynamodb-xdynamodb2dynamodump2dynamoezes-mongodb-syncequal-file-contentseko-clispexpressequal-stream-contents@dalongrong/cube-s3repositoryrunkit-taprsa-imsap-apimsapimread-for-meresin-cli-mcrijksarchief-dlspinrspacecatsortter-gatsby-plugin-s3smashing-dev-tool@darkhogg/fctrldcrdocker-workspacedocker-qemu-transpose@balena/compose@aws-crypto/integration-browser@aws-crypto/integration-node@aws-crypto/integration-vectorsc3t-padoptiovoluptatembuild-mav-gtfscesium-serialization-pluginparadox-app@berry/coreparcel-plugin-transformifypipe-streams-to-promise@cardstack/ephemeral@cardstack/identitymindcognito-toolcode-challenge-remote@cliqz-oss/web-extpoodle-servicecommon-stringifylightsub-apple-reporter@sourcegraph/web-extlighting-plugin-vue@swirly/rasterizer-cairoconglomerate-weaver@commonshost/coreprotobuf-websocket-apiprotoc-gen-dotbpeprotoc-gen-dotbpe2protoc-gen-dotbpe3@consento/cardsprotoc-gen-tomatoprotoc-gen-markdownprotoc-h1-pluginsprotoc-plugin@bidipass/sdkphonegap-build-toolpageparsercatl-clicreate-cloud-app@brandl-nutrition/gatsby-plugin-s3blankpapernihilaspernatur10t-images-to-pdfatscmathena-aws-v3@appythings/apidex-cliboilerplate-protocolconfigurated-sample-generatorqrfidarp2nomad-streambcs-cli@altano/html-cdnifybeelzebubbiojs2galaxynpm-migrate-allnow-we-test
3.0.0

4 years ago

2.2.0

8 years ago

2.1.1

8 years ago

2.1.0

8 years ago

2.0.0

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.4

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago

0.1.0

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago