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

holesail-switchboard

v2.0.8

Published

A web interface to manage multiple holesail servers and clients

Readme

Holesail Switchboard

Holesail Switchboard screenshot

A web interface to manage multiple holesail servers and clients for peer-to-peer connections.

Features

  • Create and manage multiple holesail servers
  • Create and manage multiple holesail clients
  • Real-time status monitoring (running, failed, disabled, initializing)
  • QR code generation for server connection URLs
  • Secure mode support for servers
  • Persistent configuration storage

Quick Start

Run directly with npx (no installation required):

npx holesail-switchboard

This will start the server and automatically open your browser.

CLI Usage

# Run with default settings (opens browser automatically)
npx holesail-switchboard

# Specify a custom port
npx holesail-switchboard --port 4000

# Don't open browser on startup
npx holesail-switchboard --no-open

# Use a custom data file location
npx holesail-switchboard --data-file /path/to/data.json

# Combine options
npx holesail-switchboard -p 4000 -H 127.0.0.1 --no-open

CLI Flags

| Flag | Description | Default | |------|-------------|---------| | -d, --data-file <path> | Path to data file | OS-specific (see below) | | -p, --port <number> | Web dashboard UI port | 3000 | | -H, --host <address> | Web dashboard UI host | 127.0.0.1 | | -c, --client-host <address> | Host for Holesail clients to bind to | 127.0.0.1 | | --no-open | Don't open browser on startup | (opens by default) | | -h, --help | Show help | |

Default Data File Locations

When --data-file is not specified and HSSB_DATA_FILE environment variable is not set:

  • macOS: ~/Library/Application Support/holesail-switchboard/data.json
  • Linux: ~/.config/holesail-switchboard/data.json
  • Windows: %APPDATA%/holesail-switchboard/data.json

Environment Variables

CLI flags take precedence over environment variables. Copy .env.example to .env to configure:

| Variable | Description | CLI Override | |----------|-------------|--------------| | HSSB_DATA_FILE | Path to JSON state file | --data-file | | HSSB_PORT | Web dashboard UI port | --port | | HSSB_HOST | Web dashboard UI host | --host | | HSSB_CLIENT_HOST | Host for Holesail clients to bind to | --client-host | | HSSB_CLIENT_LINK_DOMAIN | Domain for client links in dashboard (blank=same as dashboard, <nolink>=disable) | | | HSSB_SUBTITLE | Optional subtitle for the UI | | | HSSB_FIXED_CLIENT_PORTS | Comma-separated list of fixed client ports | |

Development Setup

  1. Copy .env.example to .env and configure the variables
  2. Run npm install to install dependencies
  3. Run npm run dev for development or npm run build && npm run start for production