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

@launchsecure/launch-kit

v0.0.32

Published

LaunchSecure toolkit — launch-pod (pipeline), launch-chart (project graph MCP), launch-deck (visual playground MCP), launch-kit-beacon (feedback Web Component), launch-recall (file-watcher backup).

Readme

LaunchPod

Local run pod for LaunchSecure pipelines. Starts a local server with a browser UI to manage pipeline runs, workspaces, and an integrated Claude Code terminal.

Quick Start

npx launchpod

This starts the LaunchPod server and opens the UI in your browser.

Options

--port <number>   Server port (default: 52718, or set PORT env var)
--token <string>  Auth token (or log in via the UI)

Configuration

LaunchPod looks for optional config in the current directory:

  • launchpod.config.json — port and project settings
  • .env.local — environment variables (e.g. LAUNCHSECURE_URL)

Credentials are stored in .launchpod/ within your project directory.

Requirements

  • Node.js >= 18
  • Git (for workspace features)
  • Claude CLI (optional — enables the integrated terminal)

launch-recall — file-watcher backup

launch-recall watches your working tree and commits every change to a separate, gitignored shadow repo (.recall/repo.git). It bypasses your project's .gitignore so files like .env are captured. Recovery uses standard git commands.

npx launch-recall init                          # create .recall/repo.git + gitignore entry + default config
npx launch-recall watch                         # foreground watcher (defaults from .launch-recall.json)
npx launch-recall watch --debounce 1500         # CLI override
npx launch-recall log                           # show snapshots
npx launch-recall restore .env                  # restore .env from latest snapshot
npx launch-recall restore .env --at <commit>    # restore from a specific snapshot
npx launch-recall forget                        # prune history per retention config
npx launch-recall forget --dry-run              # show what would be dropped
npx launch-recall forget --keep-last 1000       # CLI override
npx launch-recall forget --max-age 14d          # CLI override
npx launch-recall stop                          # terminate the running watcher
npx launch-recall push <remote-url-or-path>     # mirror to an external bare repo
npx launch-recall gc                            # pack and prune
npx launch-recall uninstall                     # full cleanup (prompts unless --force)
npx launch-recall uninstall --keep-history      # remove config + gitignore line, keep snapshots
npx launch-recall uninstall --force             # skip confirmation

The shadow repo lives at <project>/.recall/repo.git. launch-recall init adds /.recall/ to your .gitignore so it never enters your main repo, and writes a default .launch-recall.json config at the project root. Run launch-recall watch in a terminal tab (or wire it into a launchd / systemd / Task Scheduler entry) and every change to your tree is captured within debounce milliseconds.

Config (.launch-recall.json)

{
  "debounce": 3000,
  "ignore": [
    "node_modules", ".next", "dist", "build",
    ".turbo", ".git", ".recall", "coverage"
  ],
  "retention": {
    "keepLast": 5000,
    "maxAgeDays": 30
  }
}
  • debounce — ms to wait after the last filesystem event before committing a snapshot
  • ignore — directory/path segments to keep out of snapshots (also used to skip events from the watcher)
  • retention.keepLast — keep at most N most-recent snapshots (set to null to disable)
  • retention.maxAgeDays — drop snapshots older than N days (set to null to disable)

launch-recall forget reads this config. If both retention rules are set, a snapshot is kept only if it satisfies both (i.e., it's within the last N and newer than max age). CLI flags override file values.

Same-disk caveat: the shadow lives inside the project folder by design, so rm -rf <project> removes it too. For durability, pair with launch-recall push <path-to-external-bare-repo> on a daily cron.

License

MIT