Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

async-iterate-stream

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-iterate-stream

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

  • 1.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
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

Package last updated on 07 Dec 2018

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc