npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@npmtuanmap2024/commodi-dignissimos-officiis

v1.0.0

Published

Get a stream as a string, Buffer, ArrayBuffer or array

Downloads

4

Readme

@npmtuanmap2024/commodi-dignissimos-officiis

Get a stream as a string, Buffer, ArrayBuffer or array

Features

Install

npm install @npmtuanmap2024/commodi-dignissimos-officiis

Usage

Node.js streams

import fs from 'node:fs';
import getStream from '@npmtuanmap2024/commodi-dignissimos-officiis';

const stream = fs.createReadStream('unicorn.txt');

console.log(await getStream(stream));
/*
              ,,))))))));,
           __)))))))))))))),
\|/       -\(((((''''((((((((.
-*-==//////((''  .     `)))))),
/|\      ))| o    ;-.    '(((((                                  ,(,
         ( `|    /  )    ;))))'                               ,_))^;(~
            |   |   |   ,))((((_     _____------~~~-.        %,;(;(>';'~
            o_);   ;    )))(((` ~---~  `::           \      %%~~)(v;(`('~
                  ;    ''''````         `:       `:::|\,__,%%    );`'; ~
                 |   _                )     /      `:|`----'     `-'
           ______/\/~    |                 /        /
         /~;;.____/;;'  /          ___--,-(   `;;;/
        / //  _;______;'------~~~~~    /;;/\    /
       //  | |                        / ;   \;;,\
      (<_  | ;                      /',/-----'  _>
       \_| ||_                     //~;~~~~~~~~~
           `\_|                   (,~~
                                   \~\
                                    ~~
*/

Web streams

import getStream from '@npmtuanmap2024/commodi-dignissimos-officiis';

const {body: readableStream} = await fetch('https://example.com');
console.log(await getStream(readableStream));

This works in any browser, even the ones not supporting ReadableStream.values() yet.

Async iterables

import {opendir} from 'node:fs/promises';
import {getStreamAsArray} from '@npmtuanmap2024/commodi-dignissimos-officiis';

const asyncIterable = await opendir(directory);
console.log(await getStreamAsArray(asyncIterable));

API

The following methods read the stream's contents and return it as a promise.

getStream(stream, options?)

stream: stream.Readable, ReadableStream, or AsyncIterable<string | Buffer | ArrayBuffer | DataView | TypedArray>
options: Options

Get the given stream as a string.

getStreamAsBuffer(stream, options?)

Get the given stream as a Node.js Buffer.

import {getStreamAsBuffer} from '@npmtuanmap2024/commodi-dignissimos-officiis';

const stream = fs.createReadStream('unicorn.png');
console.log(await getStreamAsBuffer(stream));

getStreamAsArrayBuffer(stream, options?)

Get the given stream as an ArrayBuffer.

import {getStreamAsArrayBuffer} from '@npmtuanmap2024/commodi-dignissimos-officiis';

const {body: readableStream} = await fetch('https://example.com');
console.log(await getStreamAsArrayBuffer(readableStream));

getStreamAsArray(stream, options?)

Get the given stream as an array. Unlike other methods, this supports streams of objects.

import {getStreamAsArray} from '@npmtuanmap2024/commodi-dignissimos-officiis';

const {body: readableStream} = await fetch('https://example.com');
console.log(await getStreamAsArray(readableStream));

options

Type: object

maxBuffer

Type: number
Default: Infinity

Maximum length of the stream. If exceeded, the promise will be rejected with a MaxBufferError.

Depending on the method, the length is measured with string.length, buffer.length, arrayBuffer.byteLength or array.length.

Errors

If the stream errors, the returned promise will be rejected with the error. Any contents already read from the stream will be set to error.bufferedData, which is a string, a Buffer, an ArrayBuffer or an array depending on the method used.

import getStream from '@npmtuanmap2024/commodi-dignissimos-officiis';

try {
	await getStream(streamThatErrorsAtTheEnd('unicorn'));
} catch (error) {
	console.log(error.bufferedData);
	//=> 'unicorn'
}

Browser support

For this module to work in browsers, a bundler must be used that either:

  • Supports the exports.browser field in package.json
  • Strips or ignores node:* imports

Most bundlers (such as Webpack) support either of these.

Additionally, browsers support web streams and async iterables, but not Node.js streams.

Tips

Alternatives

If you do not need the maxBuffer option, error.bufferedData, nor browser support, you can use the following methods instead of this package.

streamConsumers.text()

import fs from 'node:fs';
import {text} from 'node:stream/consumers';

const stream = fs.createReadStream('unicorn.txt', {encoding: 'utf8'});
console.log(await text(stream))

streamConsumers.buffer()

import {buffer} from 'node:stream/consumers';

console.log(await buffer(stream))

streamConsumers.arrayBuffer()

import {arrayBuffer} from 'node:stream/consumers';

console.log(await arrayBuffer(stream))

readable.toArray()

console.log(await stream.toArray())

Array.fromAsync()

If your environment supports it:

console.log(await Array.fromAsync(stream))

Non-UTF-8 encoding

When all of the following conditions apply:

Then the stream must be decoded using a transform stream like TextDecoderStream or b64.

import getStream from '@npmtuanmap2024/commodi-dignissimos-officiis';

const textDecoderStream = new TextDecoderStream('utf-16le');
const {body: readableStream} = await fetch('https://example.com');
console.log(await getStream(readableStream.pipeThrough(textDecoderStream)));

Blobs

getStreamAsArrayBuffer() can be used to create Blobs.

import {getStreamAsArrayBuffer} from '@npmtuanmap2024/commodi-dignissimos-officiis';

const stream = fs.createReadStream('unicorn.txt');
console.log(new Blob([await getStreamAsArrayBuffer(stream)]));

JSON streaming

getStreamAsArray() can be combined with JSON streaming utilities to parse JSON incrementally.

import fs from 'node:fs';
import {compose as composeStreams} from 'node:stream';
import {getStreamAsArray} from '@npmtuanmap2024/commodi-dignissimos-officiis';
import streamJson from 'stream-json';
import streamJsonArray from 'stream-json/streamers/StreamArray.js';

const stream = fs.createReadStream('big-array-of-objects.json');
console.log(await getStreamAsArray(
	composeStreams(stream, streamJson.parser(), streamJsonArray.streamArray()),
));

Benchmarks

Node.js stream (100 MB, binary)

  • getStream(): 142ms
  • text(): 139ms
  • getStreamAsBuffer(): 106ms
  • buffer(): 83ms
  • getStreamAsArrayBuffer(): 105ms
  • arrayBuffer(): 81ms
  • getStreamAsArray(): 24ms
  • stream.toArray(): 21ms

Node.js stream (100 MB, text)

  • getStream(): 90ms
  • text(): 89ms
  • getStreamAsBuffer(): 127ms
  • buffer(): 192ms
  • getStreamAsArrayBuffer(): 129ms
  • arrayBuffer(): 195ms
  • getStreamAsArray(): 89ms
  • stream.toArray(): 90ms

Web ReadableStream (100 MB, binary)

  • getStream(): 223ms
  • text(): 221ms
  • getStreamAsBuffer(): 182ms
  • buffer(): 153ms
  • getStreamAsArrayBuffer(): 171ms
  • arrayBuffer(): 155ms
  • getStreamAsArray(): 83ms

Web ReadableStream (100 MB, text)

  • getStream(): 141ms
  • text(): 139ms
  • getStreamAsBuffer(): 91ms
  • buffer(): 80ms
  • getStreamAsArrayBuffer(): 89ms
  • arrayBuffer(): 81ms
  • getStreamAsArray(): 21ms

Benchmarks' source file.

FAQ

How is this different from concat-stream?

This module accepts a stream instead of being one and returns a promise instead of using a callback. The API is simpler and it only supports returning a string, Buffer, an ArrayBuffer or an array. It doesn't have a fragile type inference. You explicitly choose what you want. And it doesn't depend on the huge readable-stream package.

Related