Releases: justyn-clark/devports
Releases · justyn-clark/devports
v0.1.5
devports v0.1.5
Install with curl:
curl -fsSL https://raw.githubusercontent.com/justyn-clark/devports/main/scripts/install.sh | bashInstall with npm:
npm i -g @justynclark/devportsChangelog
v0.1.2
devports 0.1.2 release.
devports v0.1.0
devports is a CLI for managing local development ports, configured services, and browser-open flows from one place.
What ships in v0.1.0
- Config-backed service registry with named services, expected ports, and start commands
- Listener discovery and inspection from the CLI and TUI
- Local browser open for configured running services
- LAN URL output for configured services when you want to open them from another device
- Background launch for configured services with per-repo logs at
.devports/start.log - Port-based process termination with graceful and force-kill options
- Interactive terminal UI for browsing listeners and triggering common actions
Notable behavior
devports open <service>opens the local app on127.0.0.1, not the machine hostnamedevports urlsis the LAN/share surface and prints hostname-based URLsdevports start <service>launches in the background and returns the local URL, PID, and log pathdevports doctorfocuses on actionable local dev issues instead of generic system listener noise
Getting started
devports config init
devports config add web \
--repo ~/projects/web \
--port 3000 \
--start "vite --host 0.0.0.0 --port 3000"
devports start web
devports open web
devports urls