https://github.com/gioni06/whereserver
Whereserver is a command line utility to find the PID and URL of a development server that's running on your machine.
https://github.com/gioni06/whereserver
developer-tools devserver localhost rust
Last synced: 11 months ago
JSON representation
Whereserver is a command line utility to find the PID and URL of a development server that's running on your machine.
- Host: GitHub
- URL: https://github.com/gioni06/whereserver
- Owner: Gioni06
- Created: 2023-10-15T13:41:01.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-16T07:40:12.000Z (over 1 year ago)
- Last Synced: 2025-01-30T04:41:26.518Z (over 1 year ago)
- Topics: developer-tools, devserver, localhost, rust
- Language: Rust
- Homepage:
- Size: 19.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Whereserver
Whereserver is a command line utility to find the PID and URL of a development server that's running on your machine.
I wrote this utility because I often forget which port a development server is running on.
Also sometimes a server is running in some background process, and I have to manually find the PID of the process and kill it.
```bash
sh install.sh
```
```bash
$ whereserver
| Port | PID | URL |
|------|-------|-------------------------|
| 80 | 2410 | http://127.0.0.1:80 |
| 5174 | 37259 | http://127.0.0.1:5174 |
```