/code-sync

Primary LanguageJavaScriptMIT LicenseMIT

Code Sync - A Realtime Code Editor

screenshot

Code Sync is a collaborative, real-time code editor where users can seamlessly code together. It provides a platform for multiple users to enter a room, share a unique room ID, and collaborate on code simultaneously.

GitHub contributors GitHub License

๐Ÿ”ฎ Features

  • ๐Ÿ’ป Real-time collaboration on code editing across multiple files
  • ๐Ÿš€ Unique room generation with room ID for collaboration
  • ๐ŸŒˆ Syntax highlighting for various file types with auto-language detection
  • ๐Ÿ’ก Auto suggestion based on programming language
  • โฑ๏ธ Instant updates and synchronization of code changes across all files
  • ๐Ÿ“ฃ Notifications for user join and leave events
  • ๐ŸŽจ Multiple themes for personalized coding experience
  • ๐ŸŒ Comprehensive language support for versatile programming
  • ๐Ÿ”  Option to change font size and font family
  • ๐Ÿ‘ฅ User presence list of users currently in the collaboration session, including online/offline status indicators
  • ๐Ÿ“ Open, edit, save, and delete file functionalities
  • ๐Ÿ’พ Option to download files edited within the collaboration session
  • ๐Ÿ’ฌ Group chatting allows users to communicate in real-time while working on code.

๐Ÿš€ Live Preview

You can view the live preview of the project here.

๐Ÿ’ป Tech Stack

JavaScript React React Router Tailwind CSS NodeJS ExpressJS Socket io Git GitHub Vercel

๐Ÿ“‚ Folder Structure

backend/
โ”œโ”€โ”€ utils/
โ”‚   โ””โ”€โ”€ actions.js
โ”œโ”€โ”€ .env
โ”œโ”€โ”€ .gitignore
โ”œโ”€โ”€ package-lock.json
โ”œโ”€โ”€ package.json
โ””โ”€โ”€ server.js

frontend/
โ”œโ”€โ”€ public/
โ”‚   โ”œโ”€โ”€ favicon/
โ”‚   โ”‚   โ””โ”€โ”€ ...
โ”‚   โ””โ”€โ”€ style.css    # Tailwind output
โ”œโ”€โ”€ src/
โ”‚   โ”œโ”€โ”€ assets/
โ”‚   โ”‚   โ””โ”€โ”€ ...
โ”‚   โ”œโ”€โ”€ components/
โ”‚   โ”‚   โ”œโ”€โ”€ chats/
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ ChatInput.jsx
โ”‚   โ”‚   โ”‚   โ””โ”€โ”€ ChatList.jsx
โ”‚   โ”‚   โ”œโ”€โ”€ common/
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ Clients.jsx
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ Footer.jsx
โ”‚   โ”‚   โ”‚   โ””โ”€โ”€ Select.jsx
โ”‚   โ”‚   โ”œโ”€โ”€ editor/
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ Editor.jsx
โ”‚   โ”‚   โ”‚   โ””โ”€โ”€ EditorComponent.jsx
โ”‚   โ”‚   โ”œโ”€โ”€ files/
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ FileEditor.jsx
โ”‚   โ”‚   โ”‚   โ””โ”€โ”€ FileSystem.jsx
โ”‚   โ”‚   โ”œโ”€โ”€ forms/
โ”‚   โ”‚   โ”‚   โ””โ”€โ”€ FormComponent.jsx
โ”‚   โ”‚   โ”œโ”€โ”€ loading/
โ”‚   โ”‚   โ”‚   โ””โ”€โ”€ Loading.jsx
โ”‚   โ”‚   โ”œโ”€โ”€ sidebar/
โ”‚   โ”‚   โ”‚   โ””โ”€โ”€ Sidebar.jsx
โ”‚   โ”‚   โ”œโ”€โ”€ tabs/
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ ChatsTab.jsx
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ ClientsTab.jsx
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ FileTab.jsx
โ”‚   โ”‚   โ”‚   โ”œโ”€โ”€ SettingsTab.jsx
โ”‚   โ”‚   โ”‚   โ””โ”€โ”€ TabButton.jsx
โ”‚   โ”‚   โ”œโ”€โ”€ toast/
โ”‚   โ”‚   โ”‚   โ””โ”€โ”€ Toast.jsx
โ”‚   โ”‚   โ”œโ”€โ”€ GitHubCorner.jsx
โ”‚   โ”‚   โ””โ”€โ”€ SplitterComponent.jsx
โ”‚   โ”œโ”€โ”€ context/
โ”‚   โ”‚   โ”œโ”€โ”€ AppContext.jsx
โ”‚   โ”‚   โ”œโ”€โ”€ AppProvider.jsx
โ”‚   โ”‚   โ”œโ”€โ”€ ChatContext.jsx
โ”‚   โ”‚   โ”œโ”€โ”€ FileContext.jsx
โ”‚   โ”‚   โ””โ”€โ”€ TabContext.jsx
โ”‚   โ”œโ”€โ”€ hooks/
โ”‚   โ”‚   โ”œโ”€โ”€ useChatRoom.jsx
โ”‚   โ”‚   โ”œโ”€โ”€ useFileSystem.jsx
โ”‚   โ”‚   โ”œโ”€โ”€ useLocalStorage.jsx
โ”‚   โ”‚   โ”œโ”€โ”€ usePageEvents.jsx
โ”‚   โ”‚   โ”œโ”€โ”€ useClientActivity.jsx
โ”‚   โ”‚   โ””โ”€โ”€ useWindowDimensions.jsx
โ”‚   โ”œโ”€โ”€ layouts/
โ”‚   โ”‚   โ””โ”€โ”€ EditorLayout.jsx
โ”‚   โ”œโ”€โ”€ pages/
โ”‚   โ”‚   โ”œโ”€โ”€ EditorPage.jsx
โ”‚   โ”‚   โ””โ”€โ”€ HomePage.jsx
โ”‚   โ”œโ”€โ”€ resources/
โ”‚   โ”‚   โ”œโ”€โ”€ Font.js
โ”‚   โ”‚   โ”œโ”€โ”€ Languages.js
โ”‚   โ”‚   โ””โ”€โ”€ Themes.js
โ”‚   โ”œโ”€โ”€ socket/
โ”‚   โ”‚   โ”œโ”€โ”€ useSocket.jsx
โ”‚   โ”‚   โ””โ”€โ”€ socket.js
โ”‚   โ”œโ”€โ”€ utils/
โ”‚   โ”‚   โ”œโ”€โ”€ actions.js
โ”‚   โ”‚   โ”œโ”€โ”€ editorPlaceholder.js
โ”‚   โ”‚   โ”œโ”€โ”€ formateDate.js
โ”‚   โ”‚   โ”œโ”€โ”€ initialFile.js
โ”‚   โ”‚   โ”œโ”€โ”€ socketStatus.js
โ”‚   โ”‚   โ””โ”€โ”€ tabs.js
โ”‚   โ”œโ”€โ”€ App.jsx
โ”‚   โ”œโ”€โ”€ index.css
โ”‚   โ””โ”€โ”€ main.jsx
โ”œโ”€โ”€ .env
โ”œโ”€โ”€ .eslintrc.cjs
โ”œโ”€โ”€ .gitignore
โ”œโ”€โ”€ index.html
โ”œโ”€โ”€ package-lock.json
โ”œโ”€โ”€ package.json
โ”œโ”€โ”€ postcss.config.js
โ”œโ”€โ”€ tailwind.config.js
โ””โ”€โ”€ vercel.json
โ””โ”€โ”€ vite.config.js

screenshots/
CONTRIBUTING.md
LICENSE
README.md

โš™๏ธ Installation

  1. Fork this repository: Click the Fork button located in the top-right corner of this page to fork the repository.

  2. Clone the repository:

    git clone https://github.com/<your-username>/Code-Sync.git
  3. Set .env file: Inside the client and server directory, create or edit the .env file and add the following line:
    Frontend:

    VITE_BACKEND_URL=<your_server_url>

    Backend:

    PORT=3000
  4. Install dependencies: Navigate to the frontend and backend directories separately and run:

     npm install
  5. Start the frontend and backend servers:
    Frontend:

    cd client
    npm run dev

    Backend:

    cd server
    npm run dev
  6. Access the application: Open a browser and enter the following URL:

    http://localhost:5173/

๐Ÿ”ฎ Features for next release

  • Admin Permission: Implement an admin permission system to manage user access levels and control over certain platform features.
  • Search and Replace: Implement a search and replace functionality for efficient code navigation.

๐Ÿค Contribute

We welcome contributions to make Code Sync even better! Whether you're reporting a bug, suggesting a new feature, or fixing a typo, your input is valuable to us. Follow the contribution guidelines to get started.

๐ŸŒŸ Support Us

If you find this helpful or valuable, please consider ๐ŸŒŸ starring the repository. It helps us gain visibility and encourages further development. We appreciate your support!

๐Ÿงพ License

This project is licensed under the MIT License.