Port Number Reference

A port number identifies a specific service on a computer. When you access http://localhost:3000, the 3000 is the port. Click any port for what runs on it, how to check if it's in use, and how to open or block it.

Web Servers & Protocols

Development Frameworks

Databases

Self-Hosted & Home Lab

Network & Remote Access

How to Check If a Port Is in Use

# Windows
netstat -aon | findstr :3000

# macOS / Linux
lsof -i :3000
# or
ss -tulnp | grep 3000

How to Open a Port (Port Forwarding)

To make a local service accessible from the internet, forward the port on your router. See the port forwarding guide for step-by-step instructions for all major router brands.