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

@justynclark/devports

v0.1.5

Published

CLI for tracking local dev services, opening live apps, and sharing LAN-ready URLs.

Downloads

424

Readme

@justynclark/devports

devports is a fast local-dev command center for people who regularly run multiple apps, APIs, dashboards, and background services.

It helps you:

  • track the services you actually care about
  • see what is live on your machine
  • start configured apps in the background
  • open only the apps that are really running
  • print LAN-friendly URLs for testing on phones, tablets, and other devices

Why it is useful

If you bounce between Vite, Remix, Next.js, APIs, admin panels, and local tools, your machine turns into a pile of mystery ports fast.

devports gives you one place to:

  • map service names to repos, ports, and start commands
  • inspect live listeners alongside your configured services
  • avoid guessing which localhost tab belongs to which project
  • share the right hostname-based URL on your local network

Install

npm i -g @justynclark/devports
devports --version

This npm package installs the native devports binary for your platform.

Quickstart

Initialize config:

devports config init

Add a service:

devports config add web \
  --repo ~/projects/web \
  --port 3000 \
  --start "vite --host 0.0.0.0 --port 3000"

Start it, inspect it, and open it:

devports start web
devports list
devports open web
devports urls

Core commands

devports scan
devports list
devports tui
devports start <service>
devports open <service>
devports urls
devports doctor
devports config init
devports config add <name> --repo <path> --port <port> [--start <command>]

What npm install does

  • maps npm version X.Y.Z to GitHub release tag vX.Y.Z
  • downloads the matching native release archive from GitHub Releases
  • verifies SHA256 checksums before extraction
  • stores the binary inside the package vendor/ directory
  • exposes devports on your shell PATH through your npm global bin directory

Supported platforms

Current published release assets support:

  • macOS: amd64, arm64
  • Linux: amd64, arm64

Windows packaging is temporarily unavailable while the release pipeline is migrated away from the current failing cargo-zigbuild Windows cross-compile path.

More docs

  • GitHub repo: https://github.com/justyn-clark/devports
  • Installation guide: https://github.com/justyn-clark/devports/blob/main/docs/installation.md
  • Release assets: https://github.com/justyn-clark/devports/releases

If the binary is missing after install:

npm rebuild @justynclark/devports