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

@kevz-labs/rocket

v0.1.2

Published

Runtime Orchestration & Command Execution Toolkit

Readme

Rocket

Runtime Orchestration & Command Execution Toolkit.

rocket is a globally installable CLI that discovers a project-local rocket.toml, resolves a profile, and dispatches the real commands already defined by that project.

The design goal is to stay thin:

  • rocket discovers config
  • rocket resolves profiles
  • rocket routes commands
  • projects own the actual runtime behavior

Current MVP

The current CLI supports:

  • upward discovery of the nearest rocket.toml
  • default_profile resolution
  • built-in help, version, init, profiles, inspect, and explode
  • dispatching any project-defined command such as setup, boost, return, or status
  • supporting both rocket <profile> <command> ... and rocket <command> [profile] ... project syntax
  • forwarding extra positional args through to the resolved project command
  • optional --cwd, --profile, --, and --output-unwrapped-command

Docs

Install locally

From this project root:

pnpm install
npm link

Then, from any configured project:

rocket help
rocket profiles
rocket inspect
rocket all launch
rocket web launch
rocket admin launch
rocket user-service promote [email protected] admin
rocket all status
rocket all return

The older command-first form such as rocket launch, rocket boost, or rocket promote user-service [email protected] admin still works when you want it, but the CLI now prefers explicit profile-first examples.

If you prefer pnpm link --global, make sure PNPM_HOME is configured first via pnpm setup.

Install from npm after publish

Once the package is published, anyone should be able to run:

npm install -g @kevz-labs/rocket
rocket version

Example rocket.toml

version = 1
name = "rizer"
default_profile = "all"

[profiles.all]
description = "Full local workspace stack"

[profiles.all.commands]
setup = "./scripts/setup-new-machine.sh"
boost = "./scripts/local-stack.sh start"
return = "./scripts/local-stack.sh stop"
status = "./scripts/local-stack.sh status"

[[profiles.all.health]]
name = "web"
type = "http"
target = "http://localhost:3000"

[[profiles.all.urls]]
name = "web app"
target = "http://localhost:3000"

Notes

  • rocket does not auto-run setup from boost.
  • If a project has not declared a command, rocket should fail clearly instead of guessing.
  • The CLI is intentionally light on built-in magic so project behavior stays transparent.
  • --output-unwrapped-command prints the resolved project command without executing it. --dry-run is still accepted as a legacy alias.
  • Extra positional args are passed through to the resolved project command.
  • Project commands can be written as either rocket <profile> <command> ... or rocket <command> [profile] ....
  • Profile-first is the preferred style for documentation and teaching because it makes the target runtime explicit.
  • In the command-first form, the second positional is only treated as a profile when it matches a declared profile name.