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

@tinyfiles/cli

v0.1.60

Published

AT-1 / TinyFiles CLI — verified-lossless, queryable compression. Native prebuilt binary, no Python required.

Readme

@tinyfiles/cli

The AT-1 / TinyFiles command-line tool as a native binary — no Python required.

npm install -g @tinyfiles/cli      # or:  pnpm add -g @tinyfiles/cli   /   yarn global add @tinyfiles/cli
at1 compress qcolumnar data.csv data.at1    # verified-lossless, queryable
at1 sql data.at1 "SELECT id WHERE ts BETWEEN 100 AND 200"   # query without decompressing
at1 decompress data.at1 data.out            # byte-for-byte identical

AT-1 is structure-aware lossless compression you can query in place, with a SHA-256 integrity trailer on every archive. See https://tinyfiles.io/docs for the full guide, and https://tinyfiles.io/docs/start-here if you're new.

How it installs

This package contains only a tiny launcher. The actual engine ships as a prebuilt, compiled binary in a per-platform package (@tinyfiles/cli-win32-x64, @tinyfiles/cli-darwin-arm64, …) listed under optionalDependencies. Your package manager fetches only the one matching your OS/arch (via the packages' os/cpu fields) — there is no install script, so it works cleanly under npm, pnpm, yarn, and bun.

Supported: win32-x64, darwin-x64, darwin-arm64, linux-x64. On other platforms, use the desktop app instead: https://tinyfiles.io/download.

Notes

  • Decoding an .at1 is always free and needs no account. Heavy encoding is metered against your AT-1 account (set AT1_LICENSE_KEY, or at1 login) — same as the desktop client. See https://tinyfiles.io/pricing.
  • Decode-only in the browser/Node? Use @tinyfiles/decoder.