Experience instant messaging and group collaboration
Chatterbox is a real-time chat application built with Spring Boot and WebSockets. Learn how to implement bidirectional communication for instant messaging!
- 💬 Instant Messaging - Real-time message delivery
- 👥 Group Chat - Multiple users in same room
- 🔔 Notifications - User join/leave alerts
- 🚀 Low Latency - WebSocket protocol
┌─────────────┐ WebSocket ┌──────────────────┐
│ Client │◄───────────────►│ Spring Boot │
│ (Browser) │ STOMP/SockJS │ WebSocket Server│
└─────────────┘ └──────────────────┘
Spring Boot | WebSocket | STOMP | SockJS | JavaScript
git clone https://github.com/Shubh2-0/Chatterbox.git
cd Chatterbox
mvn spring-boot:run
# Open http://localhost:8080Keywords: WebSocket Spring-Boot Real-Time-Chat STOMP SockJS Messaging Java