{"id":28760948,"url":"https://github.com/strive79/rapidchat","last_synced_at":"2025-06-17T06:31:54.775Z","repository":{"id":224895470,"uuid":"764024596","full_name":"strive79/RapidChat","owner":"strive79","description":null,"archived":false,"fork":false,"pushed_at":"2024-04-13T11:19:16.000Z","size":464,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-29T11:36:51.121Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://rapid-chat-silk.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/strive79.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-02-27T10:48:33.000Z","updated_at":"2024-04-03T11:18:26.000Z","dependencies_parsed_at":"2025-02-16T08:34:18.731Z","dependency_job_id":null,"html_url":"https://github.com/strive79/RapidChat","commit_stats":null,"previous_names":["shubhangam333/rapidchat","strive79/rapidchat"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/strive79/RapidChat","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/strive79%2FRapidChat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/strive79%2FRapidChat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/strive79%2FRapidChat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/strive79%2FRapidChat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/strive79","download_url":"https://codeload.github.com/strive79/RapidChat/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/strive79%2FRapidChat/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260306249,"owners_count":22989571,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-17T06:30:32.121Z","updated_at":"2025-06-17T06:31:54.760Z","avatar_url":"https://github.com/strive79.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RapidChat (Next.js 14 Real-Time Chat App)\n\nRapidChat is a real-time chat application built using Socket.IO and Next.js 14. It provides users with a seamless chatting experience along with several features to enhance communication.\n\n## Table of Contents\n\n1. [Features](#features)\n2. [Project Tree](#project-tree)\n3. [Technologies Used](#technologies-used)\n4. [Installation](#installation)\n5. [Usage](#usage)\n\n## Features\n\n- **CLERK Authentication**: Implement CLERK Authentication for sign-up and sign-in.\n- **User Management**: Logged in users can view a list of all registered users in the application.\n- **Chat Functionality**:\n  - Users can add other users to their chats list to start chatting.\n  - Support for one-to-one and group chats.\n- **Profile Management**:\n  - Users can update their profile picture.\n  - Create and edit groups.\n- **Unread Messages Count**: Users can see the unread messages count in the chats list for every chat.\n- **Real-Time Communication**:\n  - Integration of Socket.IO for real-time chat functionalities.\n  - Send and receive messages in real-time.\n- **Typing Indicators**: Recipient users can see the typing animation when a user is typing in the chat.\n- **Read Receipts**: Provides read receipts functionality for messages.\n\n## Project Tree\n\n- .eslintrc.json\n- .gitignore\n- README.md\n- next.config.mjs\n- package-lock.json\n- package.json\n- postcss.config.js\n- public\n  - chatlogo.webp\n  - next.svg\n  - vercel.svg\n- src\n  - app\n    - (private)\n      - \\_chat-components\n        - chat-area\n          - image-selector.tsx\n          - index.tsx\n          - message.tsx\n          - messages.tsx\n          - new-message.tsx\n          - recipient-info.tsx\n          - recipient.tsx\n        - chats\n          - chat-card.tsx\n          - chats-header.tsx\n          - chats-list.tsx\n          - index.tsx\n          - new-chat-modal.tsx\n      - groups\n        - \\_components\n          - group-form.tsx\n        - create-group\n          - loading.tsx\n          - page.tsx\n        - edit-group\n          - [id]\n            - page.tsx\n          - loading.tsx\n      - page.tsx\n    - favicon.ico\n    - globals.css\n    - layout.tsx\n    - loading.tsx\n    - sign-in\n      - [[...sign-in]]\n        - page.tsx\n    - sign-up\n      - [[...sign-up]]\n        - page.tsx\n  - components\n    - loader.tsx\n  - config\n    - db-config.ts\n    - firebase-config.ts\n    - socket-config.ts\n  - helpers\n    - date-format.ts\n    - image-upload.ts\n  - interfaces\n    - index.ts\n  - middleware.ts\n  - models\n    - chat-model.ts\n    - message-model.ts\n    - user-model.ts\n  - providers\n    - layout-components\n      - content.tsx\n      - current-user-info.tsx\n      - header.tsx\n    - layout-provider.tsx\n    - redux-provider.tsx\n    - theme-provider.tsx\n  - redux\n    - chatSlice.ts\n    - store.ts\n    - userSlice.ts\n  - server-actions\n    - chat.ts\n    - messages.ts\n    - users.ts\n- tailwind.config.ts\n- tsconfig.json\n\n## Technologies Used\n\n- **Next.js 14**: Utilized for building the frontend of the application.\n- **Socket.IO**: Integrated for real-time communication between users.\n- **Firebase**: Used for backend services like authentication and database.\n- **Redux**: Implemented for managing application state.\n- **Tailwind CSS**: Used for styling and UI design.\n- **Ant Design**: Employed for UI components and design elements.\n- **CLERK**: Implemented for authentication purposes.\n\n## Installation\n\nTo run RapidChat locally, follow these steps:\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/yourusername/rapidchat.git\n   ```\n\n2. Install dependencies:\n   ```bash\n   cd rapidchat\n   npm install\n   ```\n3. Configure CLERK authentication by following the instructions in the CLERK.md file.\n4. Start the development server:\n   ```bash\n   npm run dev\n   ```\n5. Open your browser and navigate to http://localhost:3000 to access RapidChat.\n\n## Usage\n\n1. **Sign up or sign in**: Use CLERK authentication to sign up or sign in to the application.\n2. **Explore Users**: Once logged in, explore the list of registered users available in the application.\n3. **Start Chatting**: Add users to your chats list to start chatting. You can initiate one-to-one or group chats.\n4. **Manage Profile**: Update your profile picture and manage groups as needed.\n5. **Real-Time Communication**: Enjoy real-time communication with other users. Messages are sent and received instantly.\n6. **Typing Indicators**: See typing indicators when another user is typing in the chat.\n7. **Read Receipts**: Track message read receipts to know when your message has been seen by the recipient.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstrive79%2Frapidchat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstrive79%2Frapidchat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstrive79%2Frapidchat/lists"}