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

@deploykit/cli

v0.1.0

Published

Install, update, and manage a self-hosted DeployKit instance on a Linux VPS.

Readme

@deploykit/cli

Install, update, and manage a self-hosted DeployKit instance on a Linux VPS.

npm install -g @deploykit/cli
sudo deploykit install --domain deploy.example.com --email [email protected]

This is a native Node port of the curl | sh installer that ships with DeployKit. Everything the shell installer does — installing Docker, cloning the repo, generating secrets, building containers, bootstrapping the admin account — is reproduced here as a typed, scriptable CLI.


Requirements

  • A Linux VPS (Ubuntu, Debian, RHEL, Alpine)
  • Root or sudo
  • Node.js >= 20 on the VPS (only needed to run the CLI itself; everything else is installed for you)
  • Ports 80 and 443 reachable from the public internet

The CLI refuses to run on macOS or Windows on purpose. Connect to the VPS via SSH and run it there.

Install the CLI

npm install -g @deploykit/cli

Or one-shot via npx:

sudo npx @deploykit/cli install --domain deploy.example.com --email [email protected]

Commands

deploykit install

Bootstraps DeployKit on the current machine.

sudo deploykit install \
  --domain deploy.example.com \
  --email [email protected] \
  --admin-email [email protected] \
  --admin-password mypassword123

| Flag | Description | Default | |------|-------------|---------| | --domain <domain> | Dashboard domain (required) | — | | --email <email> | Let's Encrypt email (required) | — | | --admin-email <email> | Pre-create admin account | — | | --admin-password <pwd> | Admin password, min 8 chars | — | | --dir <path> | Install directory | /opt/deploykit | | --branch <branch> | Git branch to install | master |

If --domain and --email are omitted in a TTY, the CLI drops into interactive prompts.

deploykit update

Pulls the latest commit, rebuilds the images, and restarts the stack.

sudo deploykit update

deploykit status

Lists running containers via docker compose ps.

deploykit status

deploykit logs

Streams live logs from all services.

deploykit logs

deploykit restart

Restarts every DeployKit service.

sudo deploykit restart

deploykit uninstall

Stops the stack and removes the installation. Add --delete-data to wipe Postgres/Redis volumes and backups.

sudo deploykit uninstall --yes
sudo deploykit uninstall --yes --delete-data

After install

Dashboard:  https://<your-domain>
Directory:  /opt/deploykit

Make sure an A record points your domain to the server's public IP — Traefik issues a Let's Encrypt cert on first request.

Development

git clone https://github.com/deploykithq/deploykit-cli.git
cd deploykit-cli
npm install
npm run dev -- install --help    # run from source
npm run build                    # compile to dist/
npm run lint                     # tsc --noEmit

The CLI itself is pure Node (no shell scripts) so you can lint and build it from any OS, but the runtime ops (Docker, systemctl, apt-get) only succeed on Linux.

Publishing

npm login
npm version patch    # or minor / major
npm publish --access public

prepublishOnly runs clean && build. The published tarball only includes dist/, README.md, and LICENSE.

License

MIT