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

pudeploy

v0.1.0

Published

Personal infra butler — bootstrap Linux servers, scaffold projects, deploy & operate. SSH + systemd + sqlite, single binary self-hosted.

Downloads

119

Readme

pudeploy

CLI for pudeploy — a self-hosted, single-binary deployment server for personal projects. Bootstrap fresh Linux VPS, scaffold projects from templates, package artifacts, upload, and follow live deployment logs from one CLI.

After install the binary is just deploy — short and ergonomic.

Install

npm install -g pudeploy
# or
pnpm add -g pudeploy

Requires Node.js ≥ 20.

Quick start

# 1. Bootstrap a fresh Linux VPS (SQLite mode, single binary, ~5 minutes)
deploy bootstrap [email protected] --admin-password 'strong-pw'

# 2. Log into the new server
deploy login --server http://your-vps.example.com:7500

# 3. Scaffold a project from a template
deploy create my-app --template gin-template

# 4. Deploy it
cd my-app
deploy run

Main commands

| Command | What it does | |---|---| | deploy | Interactive menu (deploy / rollback / status / logs / restart / edit) | | deploy run | One-shot deploy — prebuild → tar → upload → follow logs | | deploy bootstrap user@host | Install a fresh deploy server on a Linux VPS | | deploy create <name> --template <t> | Scaffold project from server template, auto-register + issue token | | deploy logs <id> | Stream a specific deployment's log (SSE) | | deploy service-logs -f | Stream the app's journalctl | | deploy rollback [id] | Roll back to a prior release (default: previous success) | | deploy status | Project + service status snapshot | | deploy doctor | Health check: Node / PATH tools / server reachability / project config | | deploy ai-init | Let AI scan your repo and infer deploy.json | | deploy template publish [dir] | Upload a local template to the server |

Run deploy --help for the full reference.

Multi-environment

A single project directory can deploy to multiple environments (staging, production, ...) sharing one codebase:

{
  "server": "https://deploy.example.com",
  "default_env": "staging",
  "prebuild": "make build",
  "envs": {
    "staging":    { "project": "my-app-staging",    "source": "./bin" },
    "production": { "project": "my-app-production", "source": "./bin" }
  }
}
deploy run                    # default → staging
deploy run --env production   # switch

Configuration

deploy.json (in project root) is the source of truth.

  • Tokens live in ~/.deploy/credentials.json (not in deploy.json, not in git)
  • Per-command flags override env vars override deploy.json
  • deploy init generates a skeleton interactively

License

MIT — see LICENSE.