https://github.com/eyeblech/devportwatch
Real-time developer port monitoring tool for Linux.
https://github.com/eyeblech/devportwatch
cli cli-tool portwat pypi python-package software
Last synced: about 3 hours ago
JSON representation
Real-time developer port monitoring tool for Linux.
- Host: GitHub
- URL: https://github.com/eyeblech/devportwatch
- Owner: eyeblech
- Created: 2026-05-08T16:17:35.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-05-08T16:27:06.000Z (about 2 months ago)
- Last Synced: 2026-05-08T18:34:53.274Z (about 2 months ago)
- Topics: cli, cli-tool, portwat, pypi, python-package, software
- Language: Python
- Homepage: https://pypi.org/project/devportwatch/
- Size: 28.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🚀 PortWatch
> Real-time developer port monitoring tool for Linux.
PortWatch helps developers quickly inspect, filter, and manage running ports and development processes directly from the terminal.
Instead of juggling `ss`, `lsof`, `grep`, and `kill`, PortWatch gives you a clean live dashboard with process and project awareness.
# 📸 Demo

---
# 📦 Installation
## Install from PyPI
```bash
pip install devportwatch
```
# ▶️ Usage
## Show all active ports
```bash
devportwatch
```
## Live monitoring dashboard
```bash
devportwatch live
```
## Filter by process
```bash
devportwatch node
```
```bash
devportwatch python
```
## Kill process running on a port
```bash
devportwatch kill 3000
```
# ⚙️ Requirements
- Linux
- Python 3.10+
- `ss` command available (`iproute2`)
Install on Arch Linux:
```bash
sudo pacman -S iproute2
```
# 🤝 Contributing
Pull requests are welcome.
If you find a bug or have a feature idea, open an issue.
---