A real-time collaborative code editor that allows multiple users to code together simultaneously. Features include real-time editing, chat functionality, and support for multiple programming languages.
-
Clone the repository
-
Create
.envfiles in both client and server directories:Client
.env:VITE_BACKEND_URL=http://localhost:3000Server
.env:PORT=3000 -
Install dependencies:
# Install client dependencies cd client npm install # Install server dependencies cd ../server npm install
-
Start the servers:
# Start the server (in server directory) npm run dev # Start the client (in client directory) npm run dev
-
Open
http://localhost:5173in your browser to use the application.