A real-time chat application built using Spring Boot for the backend and HTML/CSS/JS + Socket.IO on the frontend. Users can join and chat instantly in a clean and simple UI.
📦 RealTime-chat-application ┣ 📂 frontend ┃ ┣ 📜 index.html ┃ ┣ 📜 style.css ┃ ┗ 📜 app.js ┣ 📂 backend ┃ ┣ 📂 src ┃ ┃ ┣ 📂 main ┃ ┃ ┃ ┣ 📂 java ┃ ┃ ┃ ┃ ┗ 📂 com.example.chat ┃ ┃ ┃ ┃ ┃ ┣ 📜 ChatController.java ┃ ┃ ┃ ┃ ┃ ┣ 📜 WebSocketConfig.java ┃ ┃ ┃ ┃ ┃ ┗ 📜 Message.java ┃ ┃ ┃ ┗ 📂 resources ┃ ┃ ┃ ┃ ┗ 📜 application.properties ┃ ┗ 📜 pom.xml
```bash git clone https://github.com/shrutim250/RealTime-chat-application.git cd RealTime-chat-application/backend mvn clean install
mvn spring-boot:run