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

chainship

v0.0.8

Published

Deploy a frontend to Arweave + ENS — permanent, censorship-resistant, one command.

Downloads

1,292

Readme

chainship

Deploy a frontend to Arweave + ENS — permanent, censorship-resistant, in one command. Feels like Vercel; the bytes live on permanent storage and the canonical pointer lives on Ethereum.

Honest status: every deploy embeds a client-side verifier (Service Worker + content-hash manifest): the browser checks each asset against its hash and fails closed on tamper — call this "tamper-checked delivery". It does not yet verify the ENS pointer on-chain, so a host swapping the whole self-consistent bundle is not caught, and the very first visit (before the SW installs) is unverified. So never market it as bare "verified" or "trustless" — state the pointer-swap limit alongside "fails closed" (see docs/11-mvp-scope.md).

Quickstart

npx chainship init ./site              # or --template vite | next
npx chainship deploy ./site --dry-run  # content-address + cost estimate, no keys needed
npx chainship deploy ./site            # → Arweave + ENS, prints a permanent URL

No global install required.

Commands

| Command | What it does | |---|---| | init [dir] --template <vanilla\|vite\|next> | Scaffold a deployable starter | | doctor | Preflight .env, RPC, key balance, ENS (read-only) | | dev [dir] | Build + serve locally exactly as a deploy would (--watch, --spa) | | deploy [dir] | Build → optimize → content-address → Arweave → ENS. --preview --estimate --no-optimize --build | | promote [id\|txId] | Make a deploy live (flip the ENS pointer) | | rollback [txId] | Point ENS back at a previous deploy | | status | Read the ENS name's current contenthash | | list / usage | List deploys / show local usage |

Zero-config by default; drop a chainship.json (buildCommand, outputDir, rootDir, installCommand, nodeVersion) to override the build for monorepos or custom setups.

How deploy works

  1. build — auto-detect Next (static export) / Vite / Astro, or honor chainship.json.
  2. optimize — minify HTML/CSS/JS (smaller = faster and cheaper; --no-optimize to skip).
  3. content-address — hash every file → a deterministic bundle id (the future verification anchor).
  4. upload — push to Arweave via ArDrive Turbo; a path manifest makes <gateway>/<txId> serve index.html.
  5. point ENS — encode the tx id as an EIP-1577 contenthash on the name's Sepolia resolver.
  6. record — append to .chainship/deployments.json (the dashboard + usage read it).

Environment

For a real (non–--dry-run) deploy, set in .env (run chainship doctor to check):

  • PRIVATE_KEY — a funded Sepolia test key (pays gas + the Arweave upload)
  • SEPOLIA_RPC_URL — any Sepolia RPC
  • ENS_NAME — an ENS name you control on Sepolia (or use --preview / --skip-ens)

Open source

The CLI is OSS and self-hostable: bring your own key and pay Arweave/gas directly — $0 to chainship. The managed service (gasless deploys, hosted dashboard, teams) is the paid layer. See the repo docs (docs/12-pricing.md, docs/13-open-core.md).

MIT