keecode logokeecode
5173

Vite

Vite development server

TCP
Web

Port Information

Port Number

5173

Protocol

TCP

Category

Web

Common Usage

URL with Port

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

Node.js/Express Server

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

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

Docker Port Mapping

docker run -p 5173:5173 myapp

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

Firewall Configuration

# Linux/Ubuntu firewall
sudo ufw allow 5173/tcp

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