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

tunnrl

v1.0.2

Published

Expose localhost to the internet. Free. No signup. No time limit.

Readme

tunnrl

npm version npm downloads license github stars

Expose localhost to the internet. Free. No signup. No time limit.

npx tunnrl 3000
localhost:3000  →  https://kxp7mq.tunnrl.dev

Why tunnrl?

  • No signup — run the command, get a URL. That's it.
  • No session limits — your tunnel stays up as long as you need it.
  • Auto-reconnect — wifi drops? tunnrl reconnects with exponential backoff.
  • Request logging — color-coded status, method, path, duration, and size for every request.
  • QR code — share your tunnel from terminal to phone in one scan.
  • Keyboard shortcuts — quit, replay, copy URL, open browser — all one keypress.
  • HTTPS included — every tunnel gets a secure URL automatically.
  • Tiny — minimal dependencies, installs in seconds.

How it works

tunnrl establishes a WebSocket connection between your local CLI and a remote server at tunnrl.dev. The server acts as a public HTTPS proxy — it receives incoming requests on your tunnel URL, forwards them through the WebSocket to your machine, and sends responses back to the caller. Your local port never needs to be exposed directly.


Install

npm install -g tunnrl

Or run without installing:

npx tunnrl 3000

Usage

# Tunnel port 3000
tunnrl 3000

# Custom local host
tunnrl 8080 --host 127.0.0.1

# Show QR code on connect
tunnrl 3000 --qr

Options

| Option | Default | Description | |---|---|---| | [port] | $PORT | Local port to expose | | --host | localhost | Local hostname to forward to | | --qr | off | Show QR code on connect |


What you get

  ✔ Connected
  Forwarding  localhost:3000  →  https://kxp7mq.tunnrl.dev
  Shortcuts   q quit   r replay last request   c copy URL   o open browser

  ──────────────────────────────────────────────────────────────
  STATUS   METHOD   PATH                    DURATION   SIZE
  ──────────────────────────────────────────────────────────────
  [14:32:01] 200  GET     /api/users              12ms   1.4 KB
  [14:32:04] 201  POST    /api/posts              34ms   320 B
  [14:32:08] 404  GET     /not-found              8ms    89 B

Keyboard shortcuts

| Key | Action | |---|---| | q | Quit and close the tunnel | | r | Replay the last request locally | | c | Copy the tunnel URL to clipboard | | o | Open the tunnel URL in your browser |


Node.js API

import tunnrl from 'tunnrl'

const tunnel = await tunnrl({ port: 3000 })
console.log(tunnel.url)  // https://abc123.tunnrl.dev

tunnel.on('request', ({ method, path, status, duration }) => {
  console.log(method, path, status, `${duration}ms`)
})

tunnel.close()

Options

| Option | Type | Default | Description | |---|---|---|---| | port | number | required | Local port to expose | | local_host | string | localhost | Local hostname to forward to |


License

MIT