keecode logokeecode
8080

HTTP Alt

Alternative HTTP port

TCP
Web

Port Information

Port Number

8080

Protocol

TCP

Category

Web

Common Usage

URL with Port

http://localhost:8080
https://example.com:8080

Node.js/Express Server

const express = require('express');
const app = express();
const PORT = 8080;

app.listen(PORT, () => {
  console.log(`Server running on port ${PORT}`);
});

Docker Port Mapping

docker run -p 8080:8080 myapp

# In docker-compose.yml
ports:
  - "8080:8080"

Firewall Configuration

# Linux/Ubuntu firewall
sudo ufw allow 8080/tcp

# Check if port is in use
netstat -an | grep 8080