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

rahman-cr

v0.1.0

Published

Installer for VPS Control Room (control-room v2.0). One-line npx or AI-assisted (Claude/Codex/Gemini) flows with /sc-all skill integration.

Readme

rahman-cr

Installer for VPS Control Room v2.0 — mobile-first PWA dashboard for driving a single VPS through a web browser. Repo: https://github.com/rahmanef63/control-room

Quick use

# Option A — AI-assisted (Claude / Codex / Gemini)
npx rahman-cr ai claude
# prints a structured prompt + copies it to clipboard → paste into your AI

# Option B — One-line non-interactive install
npx rahman-cr install --vps [email protected] --domain control.you.ts.net
# fresh VPS not on Tailscale yet? add --tailscale-key tskey-auth-XXXX

# Option C — Interactive wizard (asks A or B for you)
npx rahman-cr init

# Verify local prereqs first
npx rahman-cr doctor

What the AI path does

ai <provider> prints a single self-contained prompt that:

  1. Anchors /sc-all — if you're in Claude Code / Codex CLI / Gemini CLI with the skill installed, it auto-loads the zero-human deploy skill that handles GitHub + Dokploy + DNS phases.
  2. Lists every API endpoint the AI may need:
    • Hostinger (DNS + VPS info)
    • Tailscale (auth key, devices, funnel)
    • Dokploy (app create + deploy + domain)
    • GitHub (repo create, deploy keys)
  3. Walks 7 phases from prereqs to verify, asking for each value as it reaches that phase. No silent guesses.

The prompt is plain text and copied to your clipboard via pbcopy / wl-copy / xclip / xsel / clip.exe (best-effort).

What the one-line path does

install --vps … --domain … shells into the VPS over SSH and runs a single heredoc that:

  1. Installs nvm + Node 22.
  2. (Optional) installs Tailscale and joins the tailnet with your key.
  3. Clones the repo to ~/projects/vps-control-room.
  4. Generates two 32-byte hex secrets locally and writes .env.local on the VPS (chmod 600).
  5. npm install for frontend + agent + cli.
  6. Runs scripts/install-systemd.sh (sudo) and scripts/deploy.sh main.
  7. Verifies both systemd services are active and :4001/health responds.

The login secret is printed once at the end. Save it in a password manager.

Required ahead of time

For Option B (one-line):

  • SSH access to the VPS (ssh-copy-id your key first)
  • Tailscale auth key, or the VPS already on your tailnet
  • A tailnet domain (<host>.<tailnet>.ts.net) or custom DNS pointing at the Tailscale 100.x IP

For Option A (AI):

  • Same as above, but the AI will ask for values as needed

Flags (install command)

| Flag | Required | Default | |------|----------|---------| | --vps user@host | ✓ | — | | --domain fqdn | ✓ | — | | --tailscale-key tskey-… | — | skip Tailscale install | | --branch name | — | main | | --repo url | — | github.com/rahmanef63/control-room | | --dry-run | — | print plan only |

Security notes

  • Secrets are generated on your laptop, transmitted once over SSH, and written to .env.local on the VPS with mode 600.
  • .env.local is gitignored in the upstream repo and stays gitignored.
  • The dashboard is designed for Tailscale-only access. Do not expose :4000 to the public internet.
  • See SECURITY.md for the full threat model.

License

MIT. See LICENSE.