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

@flynetdev/tunnel

v0.2.0

Published

Flynet dev tunnel — `flynet make` brings up your branded tunnel ({bird}.local.make.flynet.org) on the Flynet sish relay, pointing at your localhost.

Downloads

341

Readme

@flynetdev/tunnel

The Flynet dev tunnel. flynet dev brings up your branded dev tunnel — a stable {bird}.local.make.flynet.org URL pointing at your localhost, for OAuth redirects and live testing. It's a thin wrapper around ssh -R to the Flynet relay, so there's nothing to install beyond Node — ssh already ships with macOS/Linux. No Cloudflare, no account, no authtoken.

Install

npm i -g @flynetdev/tunnel   # then: flynet dev
# or, no install:
npx @flynetdev/tunnel dev

Requires Node ≥ 18 and an ssh client.

Usage

export FLYNET_API_KEY=bb_live_...     # your maker API key (Make dashboard, or your redeem prompt)
flynet dev --port 3000                # expose localhost:3000

The CLI calls the Make backend (POST /api/maker/tunnel), which authenticates your key, derives your branded subdomain (a deterministic bird name from your account email), and returns the relay's shared tunnel key. The CLI then runs ssh -R to the relay, so your localhost is served at https://{bird}.local.make.flynet.org — a real HTTPS origin that clears the edge's localhost block. The relay's host key is pinned, so there's no trust-on-first-use prompt.

| Env | Default | Purpose | |---|---|---| | FLYNET_API_KEY | — (required) | your maker API key; authenticates the tunnel request | | FLYNET_MAKE_URL | https://make.flynet.org | backend base (override for local/staging) | | PORT | 3000 | local port to expose (or pass --port) |

How it works

flynet dev --port 3000
  └─ POST $FLYNET_MAKE_URL/api/maker/tunnel  (X-API-Key, {port})
       → { url: "https://<bird>.local.make.flynet.org", bird, sshKey, port }
  └─ ssh -R <bird>:80:localhost:3000 -p 2222 local.make.flynet.org

Offline / break-glass

Skip the backend and tunnel directly with an explicit bird + key:

flynet dev --bird <name> --key /path/to/tunnel-key --port 3000