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

voop

v0.1.0

Published

Publish files to the web instantly with a single command using Coudflare R2

Readme

voop

Publish files to the web instantly with a single command.

Demo

Why?

I use coding agents to create interactive HTML pages instead of static markdown docs. When you can just say "make me a visualization of this data" and get a working HTML page, you need a fast way to share it. This tool lets me go from local file to public URL in one command.

Alternatives

| Tool | Pros | Cons | |------|------|------| | Surge.sh | Free, easy, custom domains | Don't own infra, account required | | Vercel CLI | Great DX, preview URLs | Opinionated, expects frameworks | | Netlify CLI | Feature-rich | Overkill for single files | | Cloudflare Pages | Fast CDN | Requires git/project setup | | GitHub Pages | Free | Requires repo + git push |

Why voop?

  • You own the infrastructure (your R2 bucket, your rules)
  • No account signup/login each time
  • No git workflow or project structure required
  • Files stay up forever (no expiring preview URLs)
  • Single file → single URL, nothing else
npx voop index.html
# https://your-bucket.r2.dev/index-a1b2c3d4.html
# (copied)

Uses Cloudflare R2 for storage with free egress and global CDN.

Install

npx voop <file>

Or install globally:

npm install -g voop
voop <file>

Setup

On first run, you'll be guided through an interactive setup wizard:

npx voop myfile.html
# No configuration found. Let's set things up first.
# → Prompts for credentials...
# → Tests connection...
# → Proceeds to upload

Before running, you'll need:

  1. Create R2 Bucket: Cloudflare Dashboard → R2 → Create bucket → Enable public access
  2. Create API Token: R2 → Manage R2 API Tokens → Create with Object Read & Write permissions

The wizard will ask for:

  • Cloudflare Account ID
  • R2 Access Key ID
  • R2 Secret Access Key
  • Bucket name
  • Public URL (e.g., https://pub-xxx.r2.dev)

Config is stored at ~/.config/voop/config.json.

Usage

voop mypage.html      # Upload a file
voop --setup          # Reconfigure credentials
voop --test           # Test R2 connection
voop --help           # Show help

Each file gets a unique URL with a random suffix to avoid conflicts.

License

MIT