{"id":22455128,"url":"https://github.com/aditya1or0/chat-app","last_synced_at":"2026-04-08T22:32:06.775Z","repository":{"id":263881600,"uuid":"882586998","full_name":"Aditya1or0/chat-app","owner":"Aditya1or0","description":"This is a real-time chat application built with React.js and Firebase. Users can securely sign up and log in with Firebase Authentication. It supports real-time messaging, image sharing, and a friend search feature. Firebase Firestore is used for message storage, and Vercel is used for deployment. ","archived":false,"fork":false,"pushed_at":"2024-11-20T19:07:31.000Z","size":13562,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-27T13:17:15.521Z","etag":null,"topics":["chat-application","chatapp","firebase","reactjs"],"latest_commit_sha":null,"homepage":"https://chat-app-nine-ruby.vercel.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/Aditya1or0.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-11-03T07:37:42.000Z","updated_at":"2024-11-23T15:04:14.000Z","dependencies_parsed_at":"2024-11-20T20:29:37.442Z","dependency_job_id":null,"html_url":"https://github.com/Aditya1or0/chat-app","commit_stats":null,"previous_names":["aditya1or0/chat-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Aditya1or0/chat-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aditya1or0%2Fchat-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aditya1or0%2Fchat-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aditya1or0%2Fchat-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aditya1or0%2Fchat-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Aditya1or0","download_url":"https://codeload.github.com/Aditya1or0/chat-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aditya1or0%2Fchat-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31577444,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["chat-application","chatapp","firebase","reactjs"],"created_at":"2024-12-06T07:10:21.832Z","updated_at":"2026-04-08T22:32:06.757Z","avatar_url":"https://github.com/Aditya1or0.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Chat-App\n\nA real-time chat application built with React.js and Firebase. This app allows users to securely log in, chat, send images, change profile pictures, set a bio, and search for friends, enhancing communication and user interaction.\n\n## Features\n\n- **Real-Time Messaging**: Users can send and receive messages in real-time.\n- **Secure Authentication**: Implemented login and signup functionality with Firebase Authentication.\n- **Profile Customization**: Users can update their profile pictures and bio.\n- **Image Sharing**: Send images during conversations.\n- **Friend Search**: Search and connect with other users.\n  \n## Tech Stack\n\n- **Frontend**: React.js, Firebase (Authentication, Firestore, Storage)\n- **Backend**: Firebase (Firestore for data storage)\n- **Deployment**: Vercel\n\n## Demo\n\nYou can try out the live application here: [Chat-App Demo](https://chat-app-nine-ruby.vercel.app/)\n\n## Installation\n\n### 1. Clone the repository\n\n```bash\ngit clone https://github.com/Aditya1or0/Chat-App.git\ncd Chat-App\n```\n\n### 2. Install dependencies\n\nRun the following command to install the required dependencies:\n\n```bash\nnpm install\n```\n\n### 3. Set up Firebase\n\n- Create a Firebase project at [Firebase Console](https://console.firebase.google.com/).\n- Set up Firebase Authentication, Firestore, and Firebase Storage.\n- Add the Firebase configuration to your app:\n  \nIn the `src/firebase.js` file, add your Firebase configuration object:\n\n```js\nimport firebase from 'firebase/app';\nimport 'firebase/auth';\nimport 'firebase/firestore';\nimport 'firebase/storage';\n\nconst firebaseConfig = {\n  apiKey: \"YOUR_API_KEY\",\n  authDomain: \"YOUR_AUTH_DOMAIN\",\n  projectId: \"YOUR_PROJECT_ID\",\n  storageBucket: \"YOUR_STORAGE_BUCKET\",\n  messagingSenderId: \"YOUR_MESSAGING_SENDER_ID\",\n  appId: \"YOUR_APP_ID\"\n};\n\nconst firebaseApp = firebase.initializeApp(firebaseConfig);\nconst db = firebaseApp.firestore();\nconst auth = firebaseApp.auth();\nconst storage = firebaseApp.storage();\n\nexport { db, auth, storage };\n```\n\nMake sure to replace the placeholders with your actual Firebase project details.\n\n### 4. Run the app\n\nOnce the setup is complete, you can start the application by running:\n\n```bash\nnpm start\n```\n\n\n## Contributing\n\nIf you'd like to contribute to this project, please fork the repository, create a new branch, and submit a pull request.\n\n## License\n\nThis project is open-source and available under the MIT License.\n\n## Acknowledgements\n\n- **React.js**: For building the user interface.\n- **Firebase**: For providing real-time database, storage, and authentication services.\n- **Vercel**: For deployment.\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faditya1or0%2Fchat-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faditya1or0%2Fchat-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faditya1or0%2Fchat-app/lists"}