streams-to-async-iterator

A simple stream to async iterator


Install
npm install streams-to-async-iterator@0.4.0

Documentation

streams-to-async-iterator

A simple stream to async iterator

Install

npm i streams-to-async-iterator

Usage

import toAsync from 'streams-to-async-iterator';

const stream = fs.createReadStream(filename);
const asyncStream = toAsync(stream);

for await (const chunk of asyncStream) {
  // ...
}

API

toAsync(stream)

  • stream Readable stream

Alternatives: