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

dvaar

v0.4.9

Published

Fast, secure tunneling for developers. Expose localhost to the internet with custom subdomains and HTTPS. Drop-in replacement for ngrok.

Readme

dvaar

Fast, secure tunneling for developers. Drop-in replacement for ngrok.

npm version License: MIT

Installation

npm install -g dvaar

Or use directly with npx:

npx dvaar http 3000

Quick Start

# 1. Login with GitHub (uses Device Flow)
dvaar login

# 2. Expose your local server
dvaar http 3000

# That's it! Your local server is now accessible globally.

Example output:

┌   dvaar
│
◇  Connected to server
│
◇  Tunnel Active
│  Public URL: https://quick-fox-847.dvaar.app
│  Forwarding: http://localhost:3000
│
◆  Waiting for requests... (Ctrl+C to stop)

  14:23:15     GET /api/users              200    42ms     1.2KB
  14:23:16    POST /api/login              200    89ms     256B
  14:23:18     GET /dashboard              200    12ms    45.3KB

Commands

dvaar login [TOKEN]

Authenticate with Dvaar using GitHub OAuth.

# Interactive login (opens GitHub Device Flow)
dvaar login

# Or provide a token directly
dvaar login <your-token>

Example login flow:

┌   dvaar login
│
◇  Connected to GitHub
│
◇  One-Time Code
│  Copy this code: ABCD-1234
│
│  Then paste it at: https://github.com/login/device
│
◇  Open GitHub in your browser?
│  Yes / No
│
◇  Waiting for authentication...
│
◇  Authenticated with GitHub
│
◇  Logged in as [email protected]
│
└  You're all set! Run `dvaar http <port>` to create a tunnel.

dvaar http <TARGET> [OPTIONS]

Create an HTTP tunnel to expose your local server.

# Expose a port
dvaar http 3000

# Expose with custom subdomain (Hobby+ plan)
dvaar http 3000 --domain myapp
# => https://myapp.dvaar.app

# Serve static files
dvaar http ./dist

# Run in background (daemon mode)
dvaar http 3000 -d

# Enable basic authentication
dvaar http 3000 --auth user:password

# Override Host header
dvaar http 3000 --host-header myapp.local

# Use HTTPS for upstream
dvaar http 3000 --use-tls

Options:

  • -d, --detach - Run in background (daemon mode)
  • --domain <subdomain> - Request a specific subdomain
  • --auth <user:pass> - Enable basic authentication
  • --host-header <host> - Override Host header sent to upstream
  • --use-tls - Use HTTPS for upstream connection

dvaar ls

List all active tunnels.

dvaar ls
# ID       PORT   URL                          STATUS
# abc123   3000   https://myapp.dvaar.app      active
# def456   8080   https://api.dvaar.app        active

dvaar stop <ID>

Stop a running tunnel.

dvaar stop abc123

dvaar logs <ID> [-f]

View tunnel logs.

# View logs
dvaar logs abc123

# Follow logs in real-time
dvaar logs abc123 -f

dvaar usage

Check your bandwidth usage and current plan.

dvaar usage
┌   dvaar usage
│
◇  Usage data retrieved
│
◇  Plan: Free
◇  Bandwidth Used: 2.50 GB
◇  Bandwidth Limit: unlimited
│
└  Done

dvaar upgrade [PLAN]

Upgrade your plan to Hobby or Pro.

# Interactive plan selection
dvaar upgrade

# Or specify plan directly
dvaar upgrade hobby   # $5/month
dvaar upgrade pro     # $15/month

Running dvaar upgrade shows an interactive selector:

┌   dvaar upgrade
│
◇  Pricing
│  ┌─────────────┬─────────────┬─────────────┬─────────────┐
│  │   Feature   │    Free     │   Hobby     │     Pro     │
│  ├─────────────┼─────────────┼─────────────┼─────────────┤
│  │ Price       │     $0      │   $5/mo     │   $15/mo    │
│  ├─────────────┼─────────────┼─────────────┼─────────────┤
│  │ Tunnels/hr  │      5      │     20      │    100      │
│  │ Requests/m  │     60      │    600      │   3000      │
│  ├─────────────┼─────────────┼─────────────┼─────────────┤
│  │ Custom sub  │      ✗      │     ✓       │     ✓       │
│  │ Reserved    │      ✗      │     ✓       │     ✓       │
│  └─────────────┴─────────────┴─────────────┴─────────────┘
│
◇  Full details: https://dvaar.io/#pricing
│
◆  Select a plan to upgrade
│  ● Hobby - $5/month (20 tunnels/hr, 600 req/min, custom subdomains)
│  ○ Pro - $15/month (100 tunnels/hr, 3000 req/min, 5 team seats)
│
◇  Checkout session created
│
◇  Checkout URL
│  https://checkout.stripe.com/pay/cs_xxx
│
└  Complete payment in your browser to activate your plan

Use arrow keys to navigate, Enter to select. Opens Stripe checkout in your browser.

Alternative Installation Methods

curl (macOS/Linux)

curl -sSL https://dvaar.io/install.sh | bash

Homebrew (macOS)

brew install strawberry-labs/dvaar

Windows (PowerShell)

irm https://dvaar.io/install.ps1 | iex

How It Works

Dvaar creates a secure WebSocket tunnel between your local machine and our edge servers. When traffic hits your public URL (e.g., https://myapp.dvaar.app), it's forwarded through the tunnel to your local server.

Internet → dvaar.app → WebSocket Tunnel → localhost:3000

Beautiful Request Logging

Dvaar shows real-time, color-coded request logs in your terminal:

  14:23:15     GET /api/users              200    42ms     1.2KB
  14:23:16    POST /api/login              200    89ms     256B
  14:23:17     PUT /api/profile            200    65ms     512B
  14:23:18  DELETE /api/session            204    23ms       0B
  14:23:19     GET /dashboard              200    12ms    45.3KB
  14:23:20     GET /api/data               500   234ms     128B
  • Green status codes for 2xx success
  • Cyan status codes for 3xx redirects
  • Yellow status codes for 4xx client errors
  • Red status codes for 5xx server errors
  • Color-coded response times (green < 100ms, yellow > 500ms, red > 1s)

Requirements

  • Node.js 16+ (for npm installation)
  • macOS, Linux, or Windows

Documentation

Full documentation at dvaar.io/docs

Support

License

MIT - see LICENSE