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

burner-cli

v0.1.4

Published

Deploy burner.dev ephemeral preview environments from the command line

Readme

burner-cli

The CLI for burner.dev — deploy ephemeral preview environments from the command line. Get a public URL for any web app in ~30 seconds.

Install

npm install -g burner-cli

Quick start

# Authenticate via GitHub
burner login

# Deploy a preview
burner deploy ./my-app -c "npm install && npm start" -p 3000

# See your live previews
burner ls

# Tear one down (or let it auto-expire)
burner rm <id-or-url>

Commands

burner login

Authenticate with your GitHub account. Opens your browser to complete the OAuth flow, then saves your API key to ~/.config/burner/config.json.

burner deploy [dir]

Deploy a directory as a preview environment.

| Flag | Description | Default | |------|-------------|---------| | -c, --command <cmd> | Command to start the server (required) | — | | -p, --port <number> | Port the server listens on | 3000 | | -e, --env <KEY=VALUE> | Environment variable (repeatable) | — | | --ttl <minutes> | Time before auto-expiry (5-240) | 45 |

burner deploy ./my-app \
  -c "npm install && npm start" \
  -p 8080 \
  -e NODE_ENV=production \
  -e API_KEY=sk-123 \
  --ttl 120

burner ls

List your preview environments. Optionally filter by status with --status <status>.

burner rm <id-or-url>

Destroy a preview. Accepts a preview ID (prev_...), a full URL, or a subdomain.

burner whoami

Show your account info and usage stats.

burner mcp

Start a Model Context Protocol server over stdio, so AI agents (Claude, Cursor, etc.) can deploy and manage previews on your behalf.

Add it to your MCP client config:

{
  "mcpServers": {
    "burner": {
      "command": "npx",
      "args": ["-y", "burner-cli", "mcp"]
    }
  }
}

Authentication

You can authenticate in two ways:

  • burner login — saves credentials to ~/.config/burner/config.json
  • BURNER_API_KEY environment variable — useful in CI or scripted environments

Supported environments

Burner currently supports Node.js projects only (React, Next.js, Vite, Astro, Express, etc.). Python, Ruby, Java, and other runtimes are coming soon.

Requirements

Node.js >= 22.0.0

License

MIT