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

@dropfast/cli

v1.0.0

Published

DropFast CLI — publish & manage DropFast sites from the terminal over the v1 REST API.

Downloads

41

Readme

@dropfast/cli

First-party dropfast CLI — publish & manage DropFast sites from the terminal. Wraps the entire v1 REST API (sites, versions, metadata, comments, aliases, grants, keys, teams, server-side bulk operations) as a thin client: no business logic, the API's {code, message, fix} error vocabulary verbatim, deterministic exit codes.

Install

npm install -g @dropfast/cli     # Node ≥18 → the `dropfast` command
dropfast --help

Developing inside the DropFast monorepo? Run it without a global install via npm run dropfast -- --help (or node packages/cli/bin/dropfast.mjs --help).

Quick start

dropfast login                      # save a key to ~/.dropfast/credentials (mode 600)
dropfast publish ./report.html --access private --meta df.project=acme
dropfast sites ls --filter df.project=acme --sort updated
dropfast bulk set --filter df.project=acme --access private        # dry-run
dropfast bulk set --filter df.project=acme --access private --yes  # execute
dropfast comments ls <slug> --status open

publish tracks paths in ~/.dropfast/state.json (the same contract the dropfast-publish skill uses): first publish of a path creates a site, subsequent publishes push a new version at the same slug/URL. --new forces a fresh site.

For agents

  • dropfast llms prints the full command tree as JSON — every command with flags, one example, and its JSON output shape. Read it once and you know the whole surface.
  • --json (default whenever stdout is not a TTY) makes every result and error machine-readable. Errors are {code, message, fix} on stderr.
  • Exit codes: 0 ok · 1 API/other error · 2 usage · 3 auth · 4 not found · 5 partial bulk failure.
  • Bulk mutations are dry-run by default; --yes executes.

Configuration

| Setting | Order | | --- | --- | | API key | --api-key$DROPFAST_API_KEY~/.dropfast/credentials | | Base URL | --base-url$DROPFAST_BASE_URLhttps://dropfast.dev |

Development

Plain ESM (.mjs), no build step. Dependencies: clipanion + typanion only. Tests live in the repo root test suite: tests/cli-*.test.ts (units, run with npm test) and tests/cli-integration.test.ts (spawns the real bin against a live dev server, part of npm run test:integration).