This project is a simple Socket Server implemented in Node.js using the built-in net module. It allows real-time communication between clients and the server, making it suitable for applications like chat systems, multiplayer games, or notification services.
- Handles multiple simultaneous client connections
- Receives and broadcasts messages
- Notifies all clients when a new client joins or leaves
- Lightweight and easy to extend
# Clone the repository
git clone https://github.com/your-username/socket-server.git
cd socket-server
# Install dependencies (if any)
npm install