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

@maxiviper117/devproxy

v0.27.1

Published

Cross-platform CLI for stable HTTPS local domains that proxy to local development services.

Readme

Alt text for screen readers

DevProxy

Stable HTTPS .local domains for local development

npm status license node pnpm typescript

DevProxy is a cross-platform CLI for stable HTTPS .local domains that proxy to local development services on Windows, macOS, and Linux. On Windows, it also works well with apps running in WSL, Docker, or native Windows processes as long as the service is reachable through loopback.

Documentation

Full documentation is hosted at https://maxiviper117.github.io/dev-proxy/.

Quick Start

  1. Install Caddy and trust its CA:

    scoop install caddy
    caddy trust

    On macOS, brew install caddy is the common install path. On Linux, use the official packages for your distribution. See the docs for the full Windows, macOS, and Linux setup guide.

  2. Install DevProxy:

    npm install -g @maxiviper117/devproxy
  3. Run your local project on a port (for example, 8000).

[!IMPORTANT] Elevated permissions required: This next step (4) modifies your system hosts file, so you must run it in an administrator / elevated terminal session (Windows: run Terminal/PowerShell as Administrator; macOS/Linux: use sudo). 4. Register the service:

Option A — Quick registration (can be run from anywhere):

devproxy add api.myapp --port 8000

Option B — Project-scoped registration (run inside your project directory):

devproxy init --name api.myapp --port 8000

init does two things:

  1. Registers the service globally (same as add) — adds the domain to DevProxy's registry, updates your hosts file, and reloads Caddy.
  2. Creates .devproxy/config.json in your current directory, saving the service name and port.

Because the config lives in your project, you can re-run devproxy init later without remembering the original flags. Commit .devproxy/config.json to version control so your team can run the same command to set up the project locally.

  1. Open your domain:

    https://api.myapp.local

[!TIP] If you registered with init, you can also run devproxy open from your project root (where .devproxy/config.json exists) and it will open the domain directly in your browser.

  1. Optionally open the local dashboard:

    devproxy ui

    The dashboard opens in your default browser on 127.0.0.1:3579 by default. Use devproxy ui --port <port> to choose another preferred port, or devproxy ui --no-open to start the dashboard without launching a browser.

Commands

| Command | Description | | --- | --- | | devproxy init --name <name> --port <port> | Register a service and create project config in one step | | devproxy add <name> --port <port> | Register a new service | | devproxy update <name> [--name <name>] [--port <port>] | Rename a service or change its port | | devproxy open [name] | Open a service in your browser | | devproxy ui [--port <port>] [--no-open] | Open the local browser dashboard | | devproxy list | List all registered services | | devproxy status | Report Caddy state and upstream health | | devproxy remove <name> | Remove a registered service | | devproxy doctor | Check setup and diagnostics | | devproxy sync-hosts | Align DevProxy hosts entries with the registry | | devproxy certs | Print Caddy root CA certificate information | | devproxy trust | Trust the Caddy local root CA certificate | | devproxy start | Start or reload Caddy | | devproxy stop | Stop Caddy |

Requirements

  • Windows, macOS, or Linux
  • Node.js 22 or newer
  • Caddy installed and available on PATH
  • Local services reachable from the host running DevProxy

License

MIT