Socket
Socket
Sign inDemoInstall

async-iterate-stream

Package Overview
Dependencies
7
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    async-iterate-stream

async-iterate-stream --------


Version published
Weekly downloads
5
decreased by-37.5%
Maintainers
1
Install size
2.20 MB
Created
Weekly downloads
 

Readme

Source

async-iterate-stream

Turns a nodejs stream.Readable into an Iterable or AsyncIterable so that it can be iterated in an async function. Stream back-pressure is maintained duration iteration: the readable source's data events are never dropped and back-pressure is applied to stream if iteration can not keep up.

Usage

There are two ways to use this. The simple way is the bleeding edge way (https://github.com/tc39/proposal-async-iteration):

import {asyncIterateStream} from "async-iterate-stream/asyncIterateStream";

let src = fs.createReadableStream("...");  
for await (const chunk of asyncIterateStream(src, false)) {
  console.log(chunk.toString());
}

Alternatively, the non bleeding edge way is also a bit more verbose:

import {iterateStream} from "async-iterate-stream/iterateStream";

let src = fs.createReadableStream("...");  
for (const p of iterateStream(src, false)) {
  const chunk = await p;
  // it's possible that stream ended while waiting for chunk, in such case chunk is undefined, 
  if (chunk !== undefined)
    console.log(chunk.toString());
}


Keywords

FAQs

Last updated on 07 Dec 2018

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