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

@lorb/deploy-once

v0.1.2

Published

A URL that works exactly once, then self-destructs. Disposable previews and demos

Readme

@lorb/deploy-once

A URL that works exactly once, then self-destructs.

One visit. First person to open the link sees your site. Everyone after gets 410 Gone. No cleanup, no lingering deployments.

Public URL. A Cloudflare tunnel gives you a shareable https:// URL — no account needed, no DNS setup.

Self-destruct. After the visit (or when the TTL expires), the process exits. Nothing left running.

$ npx @lorb/deploy-once ./dist

  deploy-once
  URL: https://random-words.trycloudflare.com
  Waiting for visitor... (expires in 24h)

  Visited! Shutting down.

Install

npm install -g @lorb/deploy-once

Or run directly with npx:

npx @lorb/deploy-once ./dist

What you can do

Share a preview for code review

deploy-once ./dist --message "PR #42 preview"

Send the URL in Slack. Reviewer opens it, sees the site, done. The link dies after.

Send a disposable demo

deploy-once ./dist --ttl 1h

One-hour window. If nobody visits, it shuts down automatically.

Serve a single HTML file

deploy-once index.html

Single files must be .html. For other file types, put them in a directory.

Pipe the URL into another command

URL goes to stdout, everything else to stderr. Pipe-friendly.

url=$(deploy-once ./dist 2>/dev/null)
echo "Send this to the client: $url"

Use without a tunnel (local only)

deploy-once ./dist --local
# Serves on localhost only — no public URL

Use programmatically

import { createOneShotServer } from '@lorb/deploy-once';

const server = await createOneShotServer({
  path: './dist',
  ttlMs: 60 * 60 * 1000,
});

console.log(server.url);    // https://....trycloudflare.com
console.log(server.port);   // local port

server.events.on('visited', ({ time, ip }) => {
  console.log(`Visited from ${ip}`);
});

const reason = await server.done; // 'visited' | 'ttl'

Prerequisites

Public URLs require cloudflared installed. No Cloudflare account needed — it uses Quick Tunnels.

Use --local to skip this requirement.

Options

deploy-once <path> [options]

--ttl <duration>   Auto-expire (default: 24h). Examples: 30m, 1h, 6h
--message <text>   Display in terminal when someone visits
--local            Skip tunnel, localhost only
-h, --help         Show help

License

𖦹 MIT — Lorb.studio