{"id":18696121,"url":"https://github.com/jacobkosmart/chat-app-react-firebase","last_synced_at":"2026-04-18T01:34:34.131Z","repository":{"id":140609128,"uuid":"395303874","full_name":"jacobkosmart/chat-app-react-firebase","owner":"jacobkosmart","description":"Realtime chat-app with firebase","archived":false,"fork":false,"pushed_at":"2021-08-25T08:01:39.000Z","size":11318,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-22T11:03:22.542Z","etag":null,"topics":["firebase","firebase-authentication","firestore"],"latest_commit_sha":null,"homepage":"https://jacobko.info/chat-app-react-firebase/","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/jacobkosmart.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":"2021-08-12T12:01:18.000Z","updated_at":"2021-08-25T08:18:57.000Z","dependencies_parsed_at":"2023-03-27T10:56:57.004Z","dependency_job_id":null,"html_url":"https://github.com/jacobkosmart/chat-app-react-firebase","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jacobkosmart/chat-app-react-firebase","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacobkosmart%2Fchat-app-react-firebase","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacobkosmart%2Fchat-app-react-firebase/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacobkosmart%2Fchat-app-react-firebase/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacobkosmart%2Fchat-app-react-firebase/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jacobkosmart","download_url":"https://codeload.github.com/jacobkosmart/chat-app-react-firebase/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacobkosmart%2Fchat-app-react-firebase/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31953515,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"ssl_error","status_checked_at":"2026-04-18T00:39:20.671Z","response_time":62,"last_error":"SSL_read: 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":["firebase","firebase-authentication","firestore"],"created_at":"2024-11-07T11:17:16.052Z","updated_at":"2026-04-18T01:34:34.097Z","avatar_url":"https://github.com/jacobkosmart.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📔 Twitter Chat - Clone App\n\n\u003ca href=\"https://jacobko.info/chat-app-react-firebase/\" target=\"_blank\"\u003eLive Demo\u003c/a\u003e\n\n![Animation2](https://user-images.githubusercontent.com/28912774/130751269-83ec7b85-e193-4da4-9248-90c86ff38913.gif)\n\n## 💻 1.프로젝트 소개\n\n### 📝 사용기술 및 언어\n\n- React hooks\n\n- React-router-dom\n\n- Firebase (Authentication, Firestore DB, Storage)\n\n### ⏰ 개발 기간\n\n2021-08-02 ~ 2021-08-06\n\n## 📃 2.프로젝트 내용\n\n### 📌 주요 기능\n\n- Realtime chat-app\n\n- 간단한 메시지와 사진파일 업로드 가능 (firebase db 에 저장)\n\n- Firebase Authentication with Email, Google and github\n\n- Profile 에서 Display name(NickName) 변경 가능\n\n### 🎁 설치 패키지\n\n```bash\n# CRA\nnpx create-react-app PROJECT\n\n# React router dom\nyarn add react-router-dom\n\n# Firebase\nyarn add firebase --save\n\n# UUID\nyarn add uuid\n\n# Font awesome\nyarn add @fortawesome/fontawesome-free\n```\n\n## 🔎 3.주요 코드\n\n### A. Firebase config in Project\n\n```js\n// in fbase.js at root\n// .env 파일에 security code 를 넣어서 github 에 공유되지 않게 함\n\n// Firebase App (the core Firebase SDK) is always required and must be listed first\nimport firebase from \"firebase/app\";\nimport \"firebase/auth\";\nimport \"firebase/firestore\";\nimport \"firebase/storage\";\n\nconst firebaseConfig = {\n  apiKey: process.env.REACT_APP_API_KEY,\n  authDomain: process.env.REACT_APP_AUTH_DOMAIN,\n  databaseURL: process.env.REACT_APP_DATABASE_URL,\n  projectId: process.env.REACT_APP_PROJECT_ID,\n  storageBucket: process.env.REACT_APP_STORAGE_BUCKET,\n  messagingSenderId: process.env.REACT_APP_MESSAGIN_ID,\n  appId: process.env.REACT_APP_APP_APP_ID,\n};\n\n// Initialize Firebase\nfirebase.initializeApp(firebaseConfig);\n\nexport const firebaseInstance = firebase;\nexport const authService = firebase.auth();\nexport const dbService = firebase.firestore();\nexport const storageService = firebase.storage();\n```\n\n### B. Authentication\n\n\u003e firebase Authentication 관련 내용 (Jacob's DevLog) - [https://jacobko.info/firebase/firebase_2/](https://jacobko.info/firebase/firebase_2/)\n\n### C. Firestore DB\n\n\u003e firebase DB 관련 내용 (Jacob's DevLog) - [https://jacobko.info/firebase/firebase_3/](https://jacobko.info/firebase/firebase_3/)\n\n### D. Storage\n\n\u003e firebase Storage 관련 내용 (Jacob's DevLog) - [https://jacobko.info/firebase/firebase_4/](https://jacobko.info/firebase/firebase_4/)\n\n## 💡 4. Reference\n\nFirebase official reference - [https://firebase.google.com/docs/reference/js](https://firebase.google.com/docs/reference/js)\n\nnormard corder - [https://nomadcoders.co/nwitter](https://nomadcoders.co/nwitter)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacobkosmart%2Fchat-app-react-firebase","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjacobkosmart%2Fchat-app-react-firebase","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacobkosmart%2Fchat-app-react-firebase/lists"}