{"id":28228660,"url":"https://github.com/ranjika123/reactchat_system","last_synced_at":"2026-04-16T05:33:50.306Z","repository":{"id":199073134,"uuid":"702092730","full_name":"Ranjika123/ReactChat_System","owner":"Ranjika123","description":"React+firebase chat System","archived":false,"fork":false,"pushed_at":"2024-02-19T16:33:41.000Z","size":443,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-18T15:12:51.205Z","etag":null,"topics":["api","backend","chat-application","firebase","front-end","fullstack","node-js","notifications","reactjs","responsive-design","user-authentication"],"latest_commit_sha":null,"homepage":"","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/Ranjika123.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}},"created_at":"2023-10-08T13:27:55.000Z","updated_at":"2024-02-19T23:51:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"a52634ad-e390-4d32-b9f4-f1cffc5f8d75","html_url":"https://github.com/Ranjika123/ReactChat_System","commit_stats":null,"previous_names":["ranjika123/reactchat_system"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/Ranjika123/ReactChat_System","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ranjika123%2FReactChat_System","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ranjika123%2FReactChat_System/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ranjika123%2FReactChat_System/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ranjika123%2FReactChat_System/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ranjika123","download_url":"https://codeload.github.com/Ranjika123/ReactChat_System/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ranjika123%2FReactChat_System/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31872654,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"online","status_checked_at":"2026-04-16T02:00:06.042Z","response_time":69,"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":["api","backend","chat-application","firebase","front-end","fullstack","node-js","notifications","reactjs","responsive-design","user-authentication"],"created_at":"2025-05-18T15:12:51.180Z","updated_at":"2026-04-16T05:33:50.297Z","avatar_url":"https://github.com/Ranjika123.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\nReact+firebase chat System\n# React Chat System with Firebase\n\n![Chat System Screenshot](screenshot.png)\n\n## Overview\n\nWelcome to the React Chat System repository! This project is a full-stack chat application built using React for the front end and Firebase for the backend. It provides real-time chat functionality and can be easily integrated into various web applications.\n\n## Features\n\n- **Real-Time Chat:** Enjoy real-time messaging with other users.\n\n- **User Authentication:** Users can sign up, log in, and customize their profiles.\n\n- **Multiple Chat Rooms are Dleted:** Becuase FBI warned me about BOYS CHATS \n\n- **Message History:** Access chat history and scroll back through messages.\n\n- **Responsive Design:** The chat system is responsive, ensuring a seamless experience on various devices.\n\n## Getting Started\n\nTo run this chat system locally or deploy it, follow these steps:\n\n### Prerequisites\n\n- Node.js installed on your machine.\n- A Firebase project set up with Authentication and Realtime Database services enabled.\n\n### Installation\n\n1. Clone this repository to your local machine:\n\n   ```bash\n   git clone https://github.com/Ranjika123/ReactChat_System.git\n   ```\n\n2. Navigate to the project directory:\n\n   ```bash\n   cd react-chat-system\n   ```\n\n3. Install the project dependencies:\n\n   ```bash\n   npm install\n   ```\n\n4. Set up Firebase:\n   - Create a Firebase project on the [Firebase Console](https://console.firebase.google.com/).\n   - Configure Firebase in your project by adding your Firebase configuration to `src/firebase.js`.\n\n5. Start the development server:\n\n   ```bash\n   npm start\n   ```\n\n6. Open your web browser and navigate to [http://localhost:3000](http://localhost:3000) to view the chat system locally.\n7. Build a \"Build\" Folder By Running\n   ```bash\n   npm run build\n   ```\n8.Update the App.js According to you API Key and Data\n\n\n## Usage\n\n- Sign up or log in to your account.\n- Join or create chat rooms.\n- Start sending and receiving messages in real-time.\n\n## Deployment\n\nTo deploy this chat system to a hosting service, follow the deployment guidelines for your chosen platform (e.g., Firebase Hosting, Netlify, Vercel).\n ```bash\n   firebase deploy\n   ```\n\n## Firebase  Server Rules\n   ```bash\n   rules_version = '2';\nservice cloud.firestore {\n  match /databases/{database}/documents {\n  \n    match /{document=**} {\n      allow read, write: if false;\n    }\n    \n    match /messages/{docId} {\n      allow read: if request.auth.uid != null;\n      allow create: if canCreateMessage();\n    }\n    \n    function canCreateMessage() {\n      let isSignedIn = request.auth.uid != null;\n      let isOwner = request.auth.uid == request.resource.data.uid;\n      \n      let isNotBanned = !exists(/databases/$(database)/documents/banned/$(request.auth.uid));\n      return isSignedIn \u0026\u0026 isOwner \u0026\u0026 isNotBanned;\n    }\n  }\n}\n   ```\n### Update It Under rules sectopn in firebase-database✔ \n\n### IF Errors occured that you can't fix use eslint\n```bash\n{\n  \"plugins\": [\"firebase\"],\n  \"extends\": [\n    \"eslint:recommended\",\n    \"plugin:firebase/eslintrc\"\n  ],\n  \"rules\": {\n    \"firebase/no-duplicate-names\": \"warn\",\n    \"firebase/no-redundant-rules\": \"warn\",\n    \"firebase/prefer-use-app\": \"warn\",\n    \"firebase/valid-app-options\": \"warn\",\n    \"firebase/valid-auth-required\": \"warn\",\n    \"firebase/valid-credential-type\": \"warn\",\n    \"firebase/valid-download-size\": \"warn\",\n    \"firebase/valid-emulator-config\": \"warn\",\n    \"firebase/valid-get-data\": \"warn\",\n    \"firebase/valid-location\": \"warn\",\n    \"firebase/valid-on-complete\": \"warn\",\n    \"firebase/valid-permissions\": \"warn\",\n    \"firebase/valid-set-data\": \"warn\",\n    \"firebase/valid-update-data\": \"warn\"\n  }\n}\n```\n\n## Contributing\n\nIf you'd like to contribute to this project, please fork this repository, make your changes, and create a pull request. We welcome enhancements and bug fixes!\n\n## Authors\n\n- **Name** - [Ranjika Nethpriya](https://github.com/Ranjika123/)\n- **social** - [Facebook](https://web.facebook.com/ranjikaneth/)\n- **social**- [Instergrame](https://www.instagram.com/ranjika_neth/)\n\n## License\n\nThis project is open-source and available under the [MIT License](LICENSE).\n\n## Acknowledgments\n\nWe'd like to thank the React and Firebase communities for their valuable contributions to web development.\n\n```\n\nDont violate our community guid lines,You will banned for rest of your life or Your Syster gonna pregnet \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Franjika123%2Freactchat_system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Franjika123%2Freactchat_system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Franjika123%2Freactchat_system/lists"}