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

draftlink

v0.1.3

Published

Publish HTML drafts from agents; searchable, shareable, status-tracked. Cloudflare Worker + CLI.

Readme

draftlink

Publish HTML drafts from agents; searchable, shareable, status-tracked.

Draftlink is a personal service for hosting single HTML pages — plans, proposals, briefs, architecture notes. Agents publish through the draftlink CLI; humans browse and share through a web dashboard. Built for Cloudflare Workers + D1.

How it fits together

  • Worker (src/) — serves drafts at /d/<id>, the dashboard, a Bearer-token API at /api/drafts, and GitHub OAuth sign-in.
  • CLI (bin/draftlink) — dependency-free Node script. Agents call the CLI; the human logs in once and tokens never touch agent context.
  • Agent skill (skills/draftlink/) — instructions that teach coding agents how to publish and read drafts.
  • Setup wizard (scripts/setup-draftlink.sh) — walks you through deps, D1, a GitHub OAuth app, secrets, and the first deploy.

Setup

Use an existing deployment (e.g. your own already-configured worker): create an API key at <your-worker>/keys, then:

npm install -g draftlink
draftlink auth login          # paste the key once

Self-host (deploy your own worker): the setup wizard lives in the repo and expects to run from a checkout — clone first:

git clone https://github.com/lm-sousa/draftlink.git && cd draftlink
npm install
./scripts/setup-draftlink.sh

The wizard walks you through deps, a D1 database, a GitHub OAuth app, secrets, and the first deploy. It is safe to re-run; it remembers what it already configured.

CLI

draftlink auth login                          # paste an API key once (create it at <your-worker>/keys)
draftlink upload plan.html --title "My plan" --project myrepo
draftlink upload - < plan.html                # stdin
draftlink update <id> --file v2.html          # same public URL, no version history
draftlink update <id> --status done
draftlink read <id|url>                       # print draft HTML to stdout
draftlink list [query]                        # search title/project/content
draftlink delete <id>
draftlink auth status | auth logout
draftlink upgrade                             # update the CLI via npm

Env overrides for CI: DRAFTLINK_TOKEN, DRAFTLINK_URL. Requires Node 22+.

Security model

  • Drafts are private by default — only the owner and people the owner granted by GitHub handle (read/write) can open them.
  • An owner can flip a draft public, turning its link into a read-only page for anyone.
  • API keys are shown once and stored hashed; revoke at any time from the dashboard.
  • Draft pages render the draft inside a sandboxed iframe (opaque origin — no cookies, no same-origin fetch, no top-level navigation), so even hostile agent HTML stays isolated; public drafts are additionally sandboxed by CSP.
  • Draft bodies are versioned (last 25 per draft). Open the history dropdown on a draft page to view or restore old versions.

Development

npm run dev          # wrangler dev (uses .dev.vars)
npm test             # vitest-pool-workers suite against the real handler + local D1
npm run typecheck
npm run deploy
npm run db:local     # apply pending D1 migrations locally
npm run db:remote    # apply pending D1 migrations to production (CI runs this on every merge)

Merges to master auto-deploy via CI (requires a CLOUDFLARE_API_TOKEN repo secret with Workers Scripts:Edit + D1:Edit scopes). Schema changes are numbered files in migrations/, applied by wrangler d1 migrations apply.

License

GPL-3.0-only