{"id":27879392,"url":"https://github.com/kirigaya07/chat_app","last_synced_at":"2026-04-09T18:55:16.254Z","repository":{"id":274434273,"uuid":"922146341","full_name":"kirigaya07/Chat_App","owner":"kirigaya07","description":null,"archived":false,"fork":false,"pushed_at":"2025-02-16T09:51:49.000Z","size":147,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-20T10:43:38.719Z","etag":null,"topics":["expressjs","mongodb","nodejs","reactjs","socket-io"],"latest_commit_sha":null,"homepage":"https://github.com/kirigaya07/Chat_App","language":"JavaScript","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/kirigaya07.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,"zenodo":null}},"created_at":"2025-01-25T12:51:00.000Z","updated_at":"2025-02-16T15:45:45.000Z","dependencies_parsed_at":"2025-05-05T03:38:46.839Z","dependency_job_id":null,"html_url":"https://github.com/kirigaya07/Chat_App","commit_stats":null,"previous_names":["kirigaya07/chat_app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kirigaya07/Chat_App","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kirigaya07%2FChat_App","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kirigaya07%2FChat_App/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kirigaya07%2FChat_App/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kirigaya07%2FChat_App/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kirigaya07","download_url":"https://codeload.github.com/kirigaya07/Chat_App/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kirigaya07%2FChat_App/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":276085238,"owners_count":25582513,"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","status":"online","status_checked_at":"2025-09-20T02:00:10.207Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["expressjs","mongodb","nodejs","reactjs","socket-io"],"created_at":"2025-05-05T03:21:24.838Z","updated_at":"2025-09-20T10:43:39.230Z","avatar_url":"https://github.com/kirigaya07.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Real-Time Chat App\n\nA **real-time chat application** built using the **MERN stack (MongoDB, Express.js, React, Node.js)** with **WebSockets (Socket.io)** for instant messaging. The app allows users to send **text messages and images** in real-time.  \n\n---\n\n## 🚀 Features\n### **Real-Time Messaging**\n- Uses **Socket.io** for instant, **bi-directional** communication.\n- **Messages update in real-time** without refreshing the page.\n\n### **Image Sharing**\n- Users can **send images up to 10MB**.\n- Images are stored in **Cloudinary** and loaded dynamically.\n\n### **WebSockets for Real-Time Updates**\n- **Instant message delivery** using **Socket.io**.\n- Users can see **who is online in real-time**.\n\n### **Authentication \u0026 Authorization**\n- **JWT-based authentication** for secure access.\n- **Google OAuth \u0026 Email/Password login**.\n\n### **Modern UI with Dark Mode**\n- Fully responsive **dark mode UI** using **Tailwind CSS + DaisyUI**.\n\n---\n\n##  Tech Stack\n### **Frontend:**\n- **React.js** + Vite ⚡  \n- **Zustand** (State Management)  \n- **Socket.io-client** (Real-Time Communication)  \n- **Tailwind CSS + DaisyUI** (UI Components)  \n\n### **Backend:**\n- **Node.js + Express.js** (Server)  \n- **MongoDB + Mongoose** (Database)  \n- **Socket.io** (WebSockets)  \n- **Cloudinary** (Image Storage)  \n\n---\n\n## Installation Guide\n### 🔧 **1. Clone the Repository**\n```sh\ngit clone https://github.com/kirigaya07/Chat_App.git\ncd Chat_App\n```\n\n### **2. Backend Setup**\n```sh\ncd backend\nnpm install\nnpm run dev\n```\n- Create a `.env` file and add:\n```sh\nMONGO_URI=your_mongodb_connection_string\nJWT_SECRET=your_secret_key\nCLOUDINARY_URL=your_cloudinary_url\nPORT = 5001\nJWT_SECRET = your_jwt_secret\nCLOUDINARY_CLOUD_NAME = your_cloud_name\nCLOUDINARY_API_KEY = coudinary_api_key\nCLOUDINARY_API_SECRET = your_api_secret\n\n```\n###  **3. Frontend Setup**\n```sh\ncd frontend\nnpm install\nnpm run dev\n```\n\n##  API Endpoints\n\n- Authentication\n  - `POST /auth/register` → User Signup\n  - `POST /auth/login` → User Login\n\n- Messages\n  - `GET /messages/:userId` → Fetch Messages\n  - `POST /messages/send/:userId` → Send Encrypted Message\n- Real-Time WebSockets\n  - `newMessage` → Receive New Messages Instantly\n  - `getOnlineUsers` → Update Online Users List\n\n## Future Improvments\n- End-to-End Encryption (E2EE) using **AES-256** \u0026 **RSA-2048**\n- Voice \u0026 Video Calls using WebRTC\n- File Sharing with Encryption\n- File Sharing \u0026 Cloud Storage Integration\n- Multi-Device Sync for Persistent Chats\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkirigaya07%2Fchat_app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkirigaya07%2Fchat_app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkirigaya07%2Fchat_app/lists"}