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 🙏

© 2025 – Pkg Stats / Ryan Hefner

lzma1

v0.0.6

Published

A JavaScript implementation of the Lempel-Ziv-Markov (LZMA) chain compression algorithm

Downloads

2,519

Readme

lzma1

This is a fork of Nathan Rugg's LZMA-JS package.

Why

There are many LZMA implementations in JavaScript, but most are outdated, unmaintained, lack type support, or rely on specific runtime APIs (e.g., Node.js Buffer).

This version has been cleaned up, with TypeScript types added to make it easier to read and maintain.

Features

  • Encode and decode LZMA streams
  • Supports both string and Uint8Array data
  • Supports both browser and Node.js environments
  • Pure JavaScript implementation with TypeScript types
  • No dependencies on runtime-specific APIs

Installation

[!NOTE] This package is native ESM and no longer provides a CommonJS export. If your project uses CommonJS, you will have to convert to ESM or use the dynamic import() function.

npm

npm install lzma1

browser

<script type="module">
	import { compress, decompress } from "https://esm.sh/lzma1@latest";
</script>

Quick start

The library provides two main functions: compress and decompress:

compress(data: string | Uint8Array, mode?: Mode): Int8Array
decompress(data: Uint8Array | ArrayBuffer): string | Int8Array

Compressing a string

import {
	compress,
	decompress,
} from "lzma1";

const data = "Hello World!";
const compressed = compress(data, 1); // Using compression level 1 (fastest)
const decompressed = decompress(compressed);

// data === decompressed

Working with binary data

import {
	compress,
	decompress,
} from "lzma1";

// Compress binary data
const binaryData = new Uint8Array([0x01, 0x02, 0x03, 0x04]);
const compressed = compress(binaryData, 5); // Default compression level

// Decompress back to binary
const decompressed = decompress(compressed);
// decompressed will be an Int8Array

HTML example

A simple browser example:

<!DOCTYPE html>
<html>
<body>
    <textarea id="input">Hello World!</textarea><br>
    <button id="run">Compress & Decompress</button>>
    <div id="result"></div>

    <script type="module">
        import { compress, decompress } from "https://esm.sh/lzma1@latest";

        document.getElementById("run").onclick = () => {
            const text = document.getElementById("input").value;
            const compressed = compress(text);
            const decompressed = decompress(compressed);

            document.getElementById("result").innerHTML =
                `Original: ${text.length} bytes<br>` +
                `Compressed: ${compressed.length} bytes<br>` +
                `Result: ${decompressed}`;
        };
    </script>
</body>
</html>

Advanced usage

You can control the compression level (1-9) to balance between speed and compression ratio:

import { compress } from "lzma1";

// Fastest compression (level 1)
const fastCompressed = compress(data, 1);

// Balanced compression (level 5)
const balancedCompressed = compress(data, 5);

// Maximum compression (level 9)
const maxCompressed = compress(data, 9);

How it works

LZMA (Lempel-Ziv-Markov chain Algorithm) is a compression algorithm that uses a dictionary compression scheme. It's known for its high compression ratio and is commonly used in the 7z archive format.

LZMA header

The LZMA compressed data begins with a header that contains information needed for decompression:

lzma

More information about the LZMA header structure.

Related