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

dropweb

v0.1.1

Published

Deploy static sites in seconds. curl for hosting.

Downloads

36

Readme


Install

npm install -g dropweb

Requires Node.js 18+. Also works with npx:

npx dropweb ./my-site

Quick Start

# Create something
mkdir my-site && echo "<h1>Hello World</h1>" > my-site/index.html

# Deploy it
dropweb my-site

#  ✓ Live at https://cool-red-fox.dropweb.app
#    Screenshot: https://screenshot.dropweb.app/cool-red-fox.jpg
#    Key saved to ~/.config/dropweb/config.json

That's it. No account, no dashboard, no YAML. One command, one URL.

Commands

Deploy

dropweb .                    # Deploy current directory
dropweb dist                 # Deploy a subfolder
dropweb ./my-site            # Deploy any folder with index.html

First deploy creates an anonymous account and saves the API key automatically. Subsequent deploys from the same folder update the same site.

Manage Sites

dropweb list                 # List all your sites
dropweb info <siteId>        # Site details + deploy history
dropweb delete <siteId>      # Permanently delete a site

Account

dropweb account              # Show tier, limits, expiry
dropweb email [email protected] # Upgrade: 3 days → 30 days
dropweb login [email protected] # Log in via email (sends key, paste it)
dropweb login sk_yourkey     # Log in with a key directly
dropweb recover [email protected] # Lost your key? Recover via email
dropweb whoami               # Show saved key + config path

How It Works

                    first deploy
  dropweb dist ──────────────────► api.dropweb.app/deploy
       │                                  │
       │                          returns URL + key
       │                                  │
       ▼                                  ▼
  .dropweb          ~/.config/dropweb/config.json
  (siteId)                (API key)

                    redeploy
  dropweb dist ──────────────────► api.dropweb.app/deploy/cool-red-fox
       │                                  │
   reads .dropweb                   updates same site
   for siteId                       resets expiry
  1. First deploy → anonymous account created, key returned and saved
  2. Key stored in ~/.config/dropweb/config.json (XDG, mode 600)
  3. Site ID stored in .dropweb in your project folder
  4. Redeploy from same folder → updates existing site
  5. Attach email → upgrade from 3-day to 30-day expiry + key recovery

Tiers

| | Anonymous | Free (with email) | |---|---|---| | Sites | 3 | 5 | | Expiry | 3 days | 30 days (resets on redeploy) | | Key recovery | ❌ | ✅ via email | | Deploy rate | 5/hr | 10/hr |

Upgrade anytime:

dropweb email [email protected]

File Storage

| File | Contents | Sensitive? | Git? | |---|---|---|---| | ~/.config/dropweb/config.json | API key, email | 🔒 Yes | Never | | .dropweb (in project root) | siteId | No | Optional |

The config directory follows the XDG Base Directory spec. Override with $XDG_CONFIG_HOME.

CI/CD

Use environment variables or dropweb login in your pipeline:

# GitHub Actions
- run: |
    npm install -g dropweb
    dropweb login ${{ secrets.DROPWEB_KEY }}
    dropweb dist
# GitLab CI
deploy:
  script:
    - npm install -g dropweb
    - dropweb login $DROPWEB_KEY
    - dropweb dist

For AI Agents

DropWeb is designed to be agent-friendly. If you're building tools that deploy sites:

Links

License

MIT