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

lzw-lite

v1.0.5

Published

A tiny, text-based LZW implementation for JS with built-in optimizations. Useful for IndexDB storage with minimal overhead.

Downloads

111

Readme

LZW Lite

A tiny, text-based LZW implementation for JS with built-in optimizations. Useful for IndexDB storage with minimal overhead.

Why you should use lzw-lite

  1. ✅ Uses native TextEncoder/TextDecoder and Uint8Arrays which makes it input-agnostic
  2. ✅ Full support for unicode/emoji character range
  3. ✅ Utilizes a dynamic bit size optimization to squeeze out a few extra bytes

Getting started

npm i lzw-lite
import {compress, decompress} from "lzw-lite"; 

/** Convert string -> Uint8Array to store in IndexDB */
const mystringToCompress = "insert string here"; 
const compressed: Uint8Array = compress(mystringToCompress);

/** Convert Uint8Array -> string to get original value back */
const myOriginalString = decompress(compressed);

A note on compilation targets

For optimal bundle size, lzw-lite is compiled with target ESNext. The package.json exposes both a type module (preffered) and type UMD export. If your target does not support the given ESM features, you will have to recompile/polyfill with your own bundler.

Missing Optimizations/Problems

  1. Dictionary resets for large files
  2. For large files (~1GB+), there is a chance that the dictionary will exceed 2 ** 31 which will cause an overflow in bit-shift operations.
  3. TLDR: do not use the library with large files as it has not been optimized for this use-case.

Note on future use

Eventually, the CompressionStream and DecompressionStream API from Google will hopefully land in most browsers which will provide a native GZIP library in the browser.

For now, the API's are only avaliable on latest Chrome versions and there are no plans from other browsers (so far) to support them.

Other, similar libraries

https://github.com/pieroxy/lz-string/blob/master/libs/lz-string.min.js (4.61 KB min)