Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

it-reader

alanshaw221.9kApache-2.0 OR MIT6.0.4TypeScript support: included

Read an exact number of bytes from a binary (async) iterable

async, binary, buffer, it, iterable, iterator, read, stream

readme

it-reader

codecov CI

Read an exact number of bytes from a binary (async) iterable

Table of contents

Install

$ npm i it-reader

Browser <script> tag

Loading this module through a script tag will make it's exports available as ItReader in the global namespace.

<script src="https://unpkg.com/it-reader/dist/index.min.js"></script>

Usage

import { reader } from 'it-reader'

const stream = reader(source) // source is any iterable or async iterable
const { value, done } = await stream.next(8)

// NOTE: value is a BufferList (https://npm.im/bl)
console.log(value.toString())

// Now read 16 more bytes:
await stream.next(16)

// or...
// Consume the rest of the stream

for await (const chunk of stream) {
  console.log(chunk.toString())
}

API

import { reader } from 'it-reader'

reader(source)

Create and return a new reader.

Parameters

Returns

An async iterator that yields BufferList objects.

The iterator's next method takes an optional parameter - the number of bytes to read from the source.

If the number of bytes to read are not specified, the iterator will yield any bytes remaining in the internal buffer or the next available chunk.

If the number of bytes to read exceeds the number of bytes available in the source the iterator will throw and error with a code property set to 'ERR_UNDER_READ' and a buffer property (the bytes read so far, if any), which is a BufferList instance.

Contribute

Feel free to dive in! Open an issue or submit PRs.

API Docs

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

changelog

6.0.4 (2023-04-19)

Dependencies

  • dev: bump aegir from 37.12.1 to 38.1.8 (#55) (07b6b6f)

6.0.3 (2023-04-18)

Dependencies

  • bump it-stream-types from 1.0.5 to 2.0.1 (#56) (9c1531f)

6.0.2 (2022-12-22)

Documentation

6.0.1 (2022-07-28)

Bug Fixes

6.0.0 (2022-07-28)

⚠ BREAKING CHANGES

  • exported uint8arraylist type is now 2.x

Dependencies

5.0.2 (2022-07-28)

Dependencies

5.0.1 (2022-03-08)

Bug Fixes

  • allow passing undefined to reader next method (#14) (9944de0)

5.0.0 (2022-02-16)

⚠ BREAKING CHANGES

  • where BufferLists were returned, now Uint8ArrayLists are

Bug Fixes

4.0.2 (2022-01-13)

Trivial Changes

4.0.1 (2022-01-13)

Bug Fixes

4.0.0 (2022-01-13)

⚠ BREAKING CHANGES

  • switch to named exports, ESM only

Features