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 🙏

© 2026 – Pkg Stats / Ryan Hefner

zstd-stream

v1.1.1

Published

Simple and efficient Zstandard compression/decompression for Node.js and browsers

Readme

zstd-stream

Efficient Zstandard compression for Browsers and Node.js

npm version install size License: MIT TypeScript Browser Demo


zstd-stream compresses and decompresses Zstandard data through the Web Streams API. It streams files larger than available RAM in constant memory, propagates backpressure end to end, and ships the WebAssembly build embedded — no .wasm asset to host or configure.

  • 🌊 Streaming first — process multi-GB data in fixed ~128 KB buffers
  • Backpressure built in — a slow writer automatically throttles the reader, so memory never runs away
  • 📦 Zero external assets — WASM is bundled in; npm install and import
  • 🌍 Universal — the same code runs in Node.js 18+ and modern browsers
  • 🔧 ESM + TypeScript — full type definitions included
  • 📊 Progress callbacks — observe bytes processed in real time

Unrivaled performance

Compressing 1 GBzstd-stream vs. the browser-capable libraries you'd otherwise reach for:

| Library | Compression | Speed | Memory | 4 GB+ files | | :---------------------------------- | ----------: | -----------: | ----------: | :---------: | | zstd-stream | 5.5× | 102 MB/s | 34 MB | | | browser gzip (CompressionStream) | 3.5× | 49 MB/s | 38 MB | ✓ | | fflate | 3.3× | 32 MB/s | 1.6 GB | ✗ | | pako | 3.5× | 20 MB/s | 1.6 GB | ✗ | | @bokuweb/zstd-wasm | — | — | >2 GB → OOM | ✗ |

Better compression, 2–5× the speed, ~50× less memory, and the only one that keeps going past a browser tab's ~2 GB ArrayBuffer limit.

Measured on 1 GB of log-like data via benchmarks/compression-bench.js; ratios depend on your data, memory and scaling don't.


Installation

npm install zstd-stream

There's also a live browser demo — a small Angular app that compresses files entirely in the browser, no install required.


Quick start

Everything operates on ReadableStream<Uint8Array> — the same stream type returned by fetch, Blob.stream(), File.stream(), and Node's Readable.toWeb().

import { compressStream, decompressStream } from "zstd-stream";

// Compress any byte stream...
const compressed = await compressStream(source, { level: 3 });

// ...and decompress it back.
const restored = await decompressStream(compressed);

// Collect a stream into bytes (or use .text() for strings):
const bytes = new Uint8Array(await new Response(restored).arrayBuffer());

Prefer streaming wherever the data is large or arrives incrementally. For small, fully in-memory buffers there are one-shot compress / decompress helpers.


Recipes

Compress a file and upload it

Pipe the compressed stream straight into a fetch request body — nothing is buffered in full.

import { compressStream } from "zstd-stream";

const file = document.querySelector<HTMLInputElement>("input[type=file]")!.files![0];
const compressed = await compressStream(file.stream(), { level: 6 });

await fetch("/upload", {
  method: "POST",
  headers: { "Content-Encoding": "zstd" },
  body: compressed,
  duplex: "half", // required when streaming a request body
});

Download and decompress

import { decompressStream } from "zstd-stream";

const res = await fetch("/data.zst");
const decompressed = await decompressStream(res.body!);

const text = await new Response(decompressed).text();

Save a compressed file to disk (browser)

pipeTo drives the whole transfer and applies backpressure for you.

import { compressStream } from "zstd-stream";
import streamSaver from "streamsaver";

const compressed = await compressStream(file.stream(), {
  level: 9,
  onProgress: (bytes) => console.log(`${(bytes / 1e6).toFixed(1)} MB written`),
});

await compressed.pipeTo(streamSaver.createWriteStream(`${file.name}.zst`));

Tip: compression is CPU-intensive. In the browser, run it inside a Web Worker to keep the UI responsive.

Compress a file on disk (Node.js)

import { createReadStream, createWriteStream } from "node:fs";
import { Readable, Writable } from "node:stream";
import { compressStream } from "zstd-stream";

const source = Readable.toWeb(createReadStream("big.log")) as ReadableStream<Uint8Array>;
const compressed = await compressStream(source, { level: 6 });

await compressed.pipeTo(Writable.toWeb(createWriteStream("big.log.zst")));

Small, in-memory data

When you already hold the whole payload, skip the streams:

import { compress, decompress } from "zstd-stream";

const data = new TextEncoder().encode("Hello, world!");
const compressed = await compress(data, { level: 3 });
const restored = await decompress(compressed);

console.log(new TextDecoder().decode(restored)); // "Hello, world!"

Memory & backpressure

The streaming API is built to handle data far larger than available RAM:

  • Bounded memory — data flows through fixed ~128 KB working buffers and is emitted one slice at a time. A compressed chunk that expands to gigabytes is never decoded into a single allocation.
  • Backpressure — output is produced lazily, one slice per read, so a slow consumer (disk, network) throttles reads from the source. A fast producer cannot outrun a slow consumer and pile up in memory.
  • Tunable bufferinghighWaterMark (bytes) sets how much output may queue before reads pause. Larger values trade memory for throughput.

The one-shot compress / decompress helpers, by contrast, hold the entire input and output in memory — use them only for small data.


API reference

All functions are async and lazily initialize the WASM module on first use.

compressStream(input, options?)

Compress a stream. The primary API.

  • input: ReadableStream<Uint8Array>
  • options?: CompressOptions
    • level?: number — compression level 1–19 (default: 3)
    • onProgress?: (bytesWritten: number) => void — cumulative compressed bytes
    • highWaterMark?: number — output bytes buffered before backpressure pauses the source (default: 1 MiB)

Returns: Promise<ReadableStream<Uint8Array>>

decompressStream(input, options?)

Decompress a stream.

  • input: ReadableStream<Uint8Array>
  • options?: DecompressOptions
    • onProgress?: (bytesWritten: number) => void — cumulative decompressed bytes
    • highWaterMark?: number — output bytes buffered before backpressure pauses the source (default: 1 MiB)

Returns: Promise<ReadableStream<Uint8Array>>

compress(input, options?)

One-shot compression of an in-memory buffer. Holds all data in memory.

  • input: Uint8Array
  • options?: CompressOptionslevel, onProgress (as above)

Returns: Promise<Uint8Array>

decompress(input, options?)

One-shot decompression of an in-memory buffer. Holds all data in memory.

  • input: Uint8Array
  • options?: DecompressOptionsonProgress (as above)

Returns: Promise<Uint8Array>

initialize()

Optional. Pre-loads the WASM module so the first compress/decompress call has no startup cost. Safe to call multiple times.

Returns: Promise<void>

import { initialize } from "zstd-stream";

await initialize(); // e.g. during app startup

Compression levels

Levels 1–19 are supported (default: 3). Higher levels compress more but cost more time and memory; "ultra" levels 20–22 are intentionally excluded because, in streaming mode, they force every decompressor to allocate a 128 MB window — even for tiny inputs.

Out-of-range values are clamped to the nearest valid level (with a console.warn) rather than throwing — e.g. level: 22 runs as 19.

| Level | Speed | Ratio | Typical use | | ----- | --------- | -------- | ----------------------------- | | 1–3 | Fast | Lower | Real-time, network streaming | | 4–7 | Balanced | Good | General purpose (recommended) | | 8–15 | Slow | Better | File storage, archival | | 16–19 | Very slow | Maximum | One-time / cold storage |


TypeScript

import type { CompressOptions, DecompressOptions } from "zstd-stream";

const options: CompressOptions = {
  level: 9,
  highWaterMark: 4 * 1024 * 1024,
  onProgress: (bytes) => console.log(`Progress: ${bytes}`),
};

Compatibility

| Environment | Minimum | | ----------- | ------- | | Node.js | 18 | | Chrome/Edge | 80 | | Firefox | 113 | | Safari | 16.4 |

Requires WebAssembly and ES2022 support.


License

MIT

Built with Zstandard by Meta, compiled with the Emscripten SDK and embedded for zero-dependency deployment.