Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 540 Bytes

README.md

File metadata and controls

15 lines (13 loc) · 540 Bytes

Collabarative Code Editor

  • multiple users can join a room for simultaneous editing in realtime.
  • single user creates a room.
  • user who created/joined the room can share the room ID for invite.

Tech Stack

  • websockets used for realtime data streaming.
  • React used in frontend and Node.js in backend.
  • react-hot-toast used for notification.
  • uuid library for generating random long string for using as Room ID.

Instructions

Development

  • cd client && npm start (on terminal 1)
  • cd server && npm run server (on terminal 2)