Socket
Socket
Sign inDemoInstall

async-concat-stream

Package Overview
Dependencies
11
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    async-concat-stream

Asynchronous concat-stream. Writable stream that concatenates string or binary data and returns a promise that resolves with the result.


Version published
Maintainers
1
Install size
198 kB
Created

Readme

Source

async-concat-stream

Asynchronous concat-stream. Writable stream that concatenates string or binary data and returns a promise that resolves with the result.

npm Build Status devDependency Status node

Usage

const concat = require('async-concat-stream')

concat(opts = {})

Creates a writable concat-stream. The promise property of the returned stream will be resolved when all of the data has been written to the stream.

Parameters:

  • opts - concat-stream options

Returns: Writable - writable stream from concat-stream with promise property

Usage:

let writable = concat()
readable.pipe(writable)
let data = await writable.promise // via ES7 async

concat.from(readable, opts = {})

Convenience method to read from the specified readable stream. Also handles errors from the readable stream.

Parameters:

  • readable - Readable, The readable stream
  • opts - concat-stream options Returns: Promise - resolves with the data from concat-stream

Usage:

let data = await concat.from(readable) // via ES7 async

Why make this when there are ~2 others?

I like to avoid promise modules and unnecessarily adding stuff to and hybridizing promises.

License

MIT

Keywords

FAQs

Last updated on 19 Jan 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc