Skip to content

RealTimeEdify is a real-time collaborative document editing web application built using the MERN stack (MongoDB, Express.js, React, Node.js), Socket.IO for real-time communication, and Quill as the text editor.

License

Notifications You must be signed in to change notification settings

Slacky300/REAL_TIME_EDIFY

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

74 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RealTimeEdify

RealTimeEdify is a real-time collaborative document editing web application built using the MERN stack (MongoDB, Express.js, React, Node.js), Socket.IO for real-time communication, and Quill as the text editor.

Screenshots:

image image image

Features

1. Document Collaboration

Users can create documents and collaborate with others in real-time. Collaborators can simultaneously edit the document, and changes are instantly reflected for all participants.

2. Collaborator Presence

The web app displays a list of online collaborators for each document. Users can see who else is currently active in the document, making collaboration more transparent.

3. Email Verification

Email Verification

To enhance security and user authentication, RealTimeEdify implements email verification for user accounts. Users receive an email with a verification link upon registration.

To enhance security and user authentication, RealTimeEdify implements email verification for user accounts. Users receive an email with a verification link upon registration.

4. Real-Time Editing

Quill, a powerful and customizable WYSIWYG editor, is integrated into RealTimeEdify to provide a seamless real-time editing experience. Users can see live updates as collaborators edit the document.

Technologies Used

  • MERN Stack:

    • MongoDB: NoSQL database for storing user data and document content.
    • Express.js: Backend framework for building the API.
    • React: Frontend library for building the user interface.
    • Node.js: JavaScript runtime for server-side development.
  • Socket.IO:

    • Enables real-time bidirectional communication between clients and the server. Used for collaborative editing and presence tracking.
  • Quill:

    • Feature-rich WYSIWYG editor used for document editing. Customized for real-time collaboration.

Getting Started

Follow these steps to run RealTimeEdify locally:

  1. Clone the repository:

    git clone https://github.com/your-username/RealTimeEdify.git
    cd RealTimeEdify
  2. Install dependencies for frontend:

   cd src
   cd client
   npm i
  1. Install dependencies for backend:
   cd src
   npm i
  1. Set up .env variables by creating a .env file in the server directory and adding the following variables:
  • For server side:
 MONGODB_URI=your_mongo_db_uri
 JWT_SECRET=your_jwt_secret
 PORT=8000
 PASSWORD=your_app_password_for_email
 EMAIL=your_gmail_email
 BACKEND_URL=your_backend_url/api/v1
 FRONTEND_URL=your_frontend_url
 PRODUCTION=false

Replace your_mongodb_connection_string, your_jwt_secret, your_email_username, your_email_password, your_email_host, and your_email_port with your own values.

Note: If you are using Gmail for sending emails, you need to enable "Less secure app access" in your Google account settings.

  • For client side:
 VITE_APP_BACKEND_URL=your_backend_url/api/v1
 VITE_APP_SOCKET_URL=your_backend_url

Replace your_backend_url with the URL where the backend server is running.

  1. Run the frontend
  cd src
  cd client
  npm run dev
  1. Run the backend
  cd src
  npm run dev
  1. Access the application in your browser at http://localhost:5173.

  2. Create an account and start collaborating on documents!

Contributing

Contributions are welcome! Please refer to the Contributing Guidelines for more information.

License

This project is licensed under the MIT License - see the LICENSE file for details.

About

RealTimeEdify is a real-time collaborative document editing web application built using the MERN stack (MongoDB, Express.js, React, Node.js), Socket.IO for real-time communication, and Quill as the text editor.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published