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

transfqr

v0.1.3

Published

Stream a file as fountain-coded QR codes from your terminal — receiver is the transfqr phone app.

Readme

transfqr CLI

Stream a file as fountain-coded QR codes from your terminal. The receiver is the transfqr phone app.

$ transfqr ./photo.jpg
transfqr · 312 chunks, ~1 min of streaming. ctrl+c stops.

  file        photo.jpg
  size        148.6 KB  (deflate)
  chunks      312  @ blockSize 512
  fileId      a1b2c3d4
  frame       00027

  point a phone running transfqr at this terminal.

  ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
  █ ▄▄▄▄▄ █▀ ▄▀ █▀ ▄▀▄▀ ▄█ ▄ ▄▀ ▄ ▀▄ █▀▄▀▄ ▄ █ ▀ █ ▄▀ █ ▄▄▄▄▄ █
  ...

Install

# One-liner (when releases ship):
curl -fsSL https://transfqr.com/install.sh | sh

# Or via npm:
npm i -g transfqr
# or, no install:
npx transfqr ./file.zip

What it does

  1. Reads any local file.
  2. Compresses (DEFLATE) if the file is large enough to benefit.
  3. SHA-256 hashes the (padded) compressed payload.
  4. Slices it into K source blocks at blockSize = 512.
  5. Builds a Luby Transform encoder.
  6. Streams an infinite stream of XOR-combined symbols as ASCII QR codes (~12 frames/sec, base45-encoded so they pack denser).
  7. The phone app catches whichever frames it can, decodes once it has K + ε symbols, verifies the hash, decompresses, hands the file to your share sheet.

No internet, no accounts, no servers. The receiver only needs to be running transfqr on a phone (App Store / Play Store).

Limits

  • 50 MB hard cap. QR-over-camera tops out around 12 frames/sec; bigger files take impractically long. Use a real network for those.
  • Above 5 MB you'll see a friendly warning estimating duration before it starts.
  • Both screens must stay still and visible. Background apps will pause the stream.

Privacy

The CLI runs entirely on your machine. It does not phone home, write logs, or read anything outside the file you point it at. The wire protocol is documented at https://transfqr.com/docs/protocol.