This is a simple real-time chat application built using Express.js, Socket.io, and Node.js.
- Users can join and send messages in real time.
- Messages are broadcasted to all connected clients.
- Users' names are associated with their messages.
- Clone the repository:
git clone https://github.com/programm3d/PingMe.git
- Navigate to the project directory
cd PingMe - Install Dependencies
npm install- Start the Server
node server.js- Run the server using the command above.
- Open
http://localhost:3000in a browser. - Join the chat by entering a username.
- Start sending messages!
├── public/
│ ├── index.html (Frontend UI)
├── server.js (Main server file)
├── package.json (Dependencies)