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

surfvps

v0.3.0

Published

Deploy a VPS on DigitalOcean, Vultr & more — pay with crypto. CLI for surfvps.com.

Readme

surfvps

Deploy a VPS on DigitalOcean, Vultr & more — pay with crypto. Command-line client for surfvps.com.

No card, no KYC forms: fund a prepaid balance with Bitcoin, Monero, USDT, Ethereum, Solana, Litecoin or Lightning, then deploy servers that bill by the hour against it.

Install

npm install -g surfvps

Log in

Create an API token in your dashboard under Settings → API tokens, then:

surfvps login          # paste the sk_live_… token; stored in ~/.surfvps/config.json (0600)

Or set it per-shell instead:

export SURFVPS_TOKEN=sk_live_...

Use

# account
surfvps balance                       # prepaid balance
surfvps deposit --usd 50 --coin XMR   # top up — prints an address + amount to pay, no browser
surfvps deposit --usd 50 --coin XMR --wait   # …and watch confirmations land
surfvps deposit --status <id>         # confirmations for an existing deposit
surfvps ledger                        # recent charges & deposits

# servers
surfvps catalog --provider digitalocean       # regions / sizes / images to deploy with
surfvps deploy \
  --provider digitalocean \
  --region nyc1 \
  --image ubuntu-24-04-x64 \
  --size s-1vcpu-1gb \
  --hostname web-1 \
  --ssh-key <key-id>                  # optional — omit and a root password is generated
surfvps ls                            # list your servers
surfvps get <id>                      # status + IP
surfvps password <id>                 # initial root password (if deployed without a key)
surfvps reboot|stop|start <id>
surfvps ssh <id>                      # ssh root@<ip>
surfvps rm <id>                       # destroy (billing stops immediately)

# ssh keys
surfvps keys                          # list
surfvps keys add --file ~/.ssh/id_ed25519.pub
surfvps keys rm <id>

deposit supports --coin BTC|XMR|ETH|LTC|SOL|USDT_TRX|LN. Omit --coin and you get a hosted checkout link where you pick the coin in a browser. Omit --wait and check later with surfvps deposit --status <id>.

Region, image and size refs are provider-specific — list them with surfvps catalog --provider <p> (or the raw API):

curl -H "Authorization: Bearer $SURFVPS_TOKEN" \
  "https://surfvps.com/v1/catalog?provider=digitalocean"

Notes

  • Billing is hourly with a one-hour minimum (and a $0.02 per-server minimum), capped at each plan's monthly price. Destroy a server and billing stops immediately.
  • Access: attach an SSH key in the dashboard, or deploy without one and a root password is generated for you and shown on the server's page.
  • SURFVPS_API overrides the API base (default https://surfvps.com).

MIT © surfvps