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

@burstflare/flare

v0.1.11

Published

CLI for managing BurstFlare instances, sessions, and workspace settings.

Readme

@burstflare/flare

flare is the command-line interface for BurstFlare.

It gives you direct access to the BurstFlare control plane for:

  • authentication
  • workspace settings and billing
  • instance CRUD, rebuilds, and common-state sync
  • session lifecycle and runtime access
  • snapshots, reports, exports, and reconcile operations

Install

Global install:

npm install -g @burstflare/flare

The npm install now checks for the OpenSSH tools used by flare ssh and warns if ssh or ssh-keygen is missing.

You can re-check your machine any time with:

flare doctor

One-off use with npx:

npx @burstflare/flare help

The installed command is:

flare

Quick Start

The CLI talks to https://burstflare.dev by default.

Register:

flare auth register --email [email protected]

Create an instance:

flare instance create node-dev --image node:20

Launch a session and attach:

flare session up sandbox --instance <instanceId>
flare ssh <sessionId>

flare ssh wakes sleeping sessions if needed, provisions a per-session SSH key in your local flare config directory, syncs the public key to the session, and opens the tunnel and SSH session directly. Add --print to inspect the tunnel endpoint and local attach details.

Common Commands

flare auth whoami
flare help session
flare help instance
flare doctor
flare workspace
flare instance list
flare instance inspect <instanceId>
flare sessions
flare snapshot list <sessionId>
flare report

flare help <topic> and --help now show focused help for command groups and individual commands, while the default flare output stays grouped by command area.

Config

The CLI stores its local config at:

~/.config/flare/config.json

You can override that path with:

FLARE_CONFIG=/path/to/config.json

Notes

  • Use --url only when you want to target a non-default environment, such as local development.
  • For local development, the dashboard runs at http://127.0.0.1:8787.

License

Licensed under Apache-2.0. See LICENSE.