Toolman

Port 5173 — Vite

TCP registered

What runs on port 5173

The default Vite development server port.

Security considerations

Development only. Vite binds to localhost by default; `--host` exposes it to the network.

Checking whether something is listening

# Linux / macOS — what is bound to the port
sudo lsof -i :5173
sudo ss -lntp | grep :5173

# Windows
netstat -ano | findstr :5173
Get-NetTCPConnection -LocalPort 5173

# is it reachable from outside?
nc -zv example.com 5173
curl -v telnet://example.com:5173

Freeing the port

# find the process, then stop it
sudo lsof -ti :5173 | xargs kill        # Linux / macOS
netstat -ano | findstr :5173            # note the PID, then:
taskkill /PID <pid> /F                    # Windows

Other common ports

All port numbers