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

@dash-ota/cli

v0.1.0

Published

Release tooling for dash-ota: keygen, fingerprint, bundle, encrypt+sign, publish, and rollout ops. Holds the Ed25519 signing key (CI/release only). npx-executable.

Readme

@dash-ota/cli

Release tooling for dash-ota — the OTA update system for React Native. This is the package that holds the Ed25519 signing private key (CI / release env only): it bundles, encrypts, signs, and publishes updates. The backend never sees the private key, so a breached backend cannot forge an update.

Ships as a single self-contained executable, runnable via npx.

📖 Full command reference: https://github.com/Scripting-Bear/dash-ota/blob/main/docs/cli.md

Usage

npx dash-ota <command> [flags]
# or: npm i -g @dash-ota/cli   →   dash-ota <command>

Release lifecycle

# 1. one signing keypair per environment (keep the private key in CI secrets only)
npx dash-ota keygen --key-id key_prod_1
npx dash-ota register-key --key-id key_prod_1 --key-file .keys/key_prod_1.public.json

# 2. bundle the JS (compile to Hermes HBC for Hermes builds) then publish a signed release
npx dash-ota publish \
  --bundle-dir ./out --platform android --channel prod \
  --runtime-version auto --bundle-version 7 \
  --rollout 10 --release-note "Fix order confirmation crash"

# 3. operate
npx dash-ota list
npx dash-ota rollout  --bundle-id <id> --pct 50
npx dash-ota pause    --bundle-id <id>     # --resume to resume
npx dash-ota rollback --bundle-id <id>
npx dash-ota native-policy --channel prod --min 42 --severity hard --store-url <url>

Commands: keygen · register-key · fingerprint (computes the native-compat runtimeVersion) · bundle · publish · list · rollout · pause · rollback · native-policy.

Backend target via --server (env OTA_SERVER, default http://localhost:4455) and --admin-token (env OTA_ADMIN_TOKEN). Full flags per command in the reference.

Key custody

Keep Ed25519 private keys in CI secrets / KMS / HSM — never commit them (.keys/ and *.private.pem are gitignored). Manifests carry a keyId; the app trusts a key ring, so keys rotate via a transition build that trusts old + new before retiring the old.

License

MIT