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

create-tally-holder

v0.1.0

Published

Spin up a Tally DHT holder node on commodity hardware — Raspberry Pi, VPS, homelab, anywhere Node 18+ runs.

Readme

create-tally-holder

Run a Tally DHT holder node in one command.

Tally is a public QIS Protocol network where anyone can define a problem, deposit structured observations, and query tight similarity-cohort tallies. Holders store and serve the data that makes it work.

Quickstart

npx create-tally-holder my-holder
cd my-holder
npm install
npm start

That's it. You're a Tally holder.

What it does

  • Generates a fresh Ed25519 identity (your node's permanent keypair)
  • Registers with the Tally relay via a signed request (no API key needed)
  • Gets assigned a slice of the bucket space via the partition table
  • Keeps a local SQLite copy of your slice, syncs every 15 minutes
  • Heartbeats the relay every 2 minutes
  • (Optional) Listens for direct client queries so the PWA can read from you when the relay is slow

Modes

| Mode | What you provide | What you get | |------|------------------|--------------| | Outbound-only (default) | Nothing — just a running node | Data persistence, network count, partition assignment, archival | | Inbound (full) | A public URL (e.g. https://holder.example.com) | Everything above + real-time push from relay + clients can query you directly |

You pick the mode during npx create-tally-holder setup. Outbound works behind NAT, in a closet, on a Pi Zero. Inbound needs a publicly reachable URL.

Requirements

  • Node.js ≥ 18
  • ~100 MB disk for the local SQLite DB (grows with network size)
  • Stable internet connection

Deploy targets

Pre-built deploy artifacts in deploy/ of your scaffolded directory:

  • deploy/tally-holder.service — systemd unit (Raspberry Pi, Debian, Ubuntu)
  • deploy/pm2.config.cjs — PM2 process manager
  • Dockerfile — containerized (at scaffold root)

See my-holder/README.md (generated) for step-by-step guides.

License

MIT © Yonder Zenith LLC