A real-time collaborative text editor built with React and WebSocket.
- Real-time collaboration
- Multiple users can edit simultaneously
- Automatic synchronization between clients
- Simple and intuitive interface
- Frontend: React
- Backend: Express.js
- WebSocket for real-time communication
- Install dependencies:
# Install server dependencies
npm install
# Install client dependencies
cd client
npm install- Start the server (in root directory):
node server.js- Start the client (in client directory):
npm startThe application will be available at http://localhost:3000
server.js- WebSocket server implementationclient/- React frontend applicationclient/src/App.js- Main editor component
ISC