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

vtunnel-cli

v1.3.0

Published

CLI client for creating secure tunnels to local development servers

Readme

vtunnel-cli

Create a secure tunnel to your local development server.

vtunnel allows you to expose your local development server to the internet through a secure tunnel, making it accessible from anywhere. Perfect for testing webhooks, sharing your work with clients, or accessing your local server from remote devices.

Installation

npm install -g vtunnel-cli

Usage

vtunnel expose --local-port <port>

Where <port> is the local port number (1-65535) you want to tunnel.

Examples

# Tunnel local port 3000
vtunnel expose --local-port 3000

# Tunnel local port 8080
vtunnel expose --local-port 8080

# Tunnel with custom tunnel server
vtunnel expose --local-port 3000 --tunnel-url http://my-tunnel-server:7000

# Tunnel with API key
vtunnel expose --local-port 3000 --api-key mykey123

After connecting to the tunnel server, you'll receive public HTTP and HTTPS URLs (using subdomain pattern app-{port}) that forward to your local server.

Command Options

  • --local-port, -lp: Local port to tunnel (1-65535) [required]
  • --api-key, -k: API key for authentication (default: "supersecret")
  • --tunnel-url, -u: Tunnel server URL (default: "http://localhost:7000")

Features

  • 🚀 Easy to use - Simple expose command with flexible options
  • 🔒 Secure - All traffic is encrypted through tunnel server
  • 🌐 Public URLs - Get a shareable URL for your local server
  • 🎯 Port validation - Ensures valid port ranges (1-65535)
  • 🔧 Configurable - API keys and tunnel servers
  • 🛑 Graceful shutdown - Clean exit with Ctrl+C

Development

  • Install dependencies:
npm install
  • Run in development mode:
npm run dev expose --local-port <port>
  • Run the unit tests:
npm test
  • Build the project:
npm run build
  • Type checking:
npm run typecheck

License

MIT

Repository

https://github.com/code-salad/vtunnel