{"id":35028218,"url":"https://github.com/2ssue/electron-chat","last_synced_at":"2026-04-11T06:42:19.728Z","repository":{"id":36013661,"uuid":"219169354","full_name":"2ssue/electron-chat","owner":"2ssue","description":"'electron 애플리케이션 개발' 책의 chatting 앱 예제를 최신 버전으로 만들어보는 프로젝트","archived":false,"fork":false,"pushed_at":"2023-05-07T04:30:02.000Z","size":1911,"stargazers_count":1,"open_issues_count":6,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-04-11T06:42:03.433Z","etag":null,"topics":["chatting-app","electron","firebase","react"],"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/2ssue.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}},"created_at":"2019-11-02T14:58:33.000Z","updated_at":"2021-12-02T14:55:09.000Z","dependencies_parsed_at":"2023-01-16T12:00:57.733Z","dependency_job_id":null,"html_url":"https://github.com/2ssue/electron-chat","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/2ssue/electron-chat","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/2ssue%2Felectron-chat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/2ssue%2Felectron-chat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/2ssue%2Felectron-chat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/2ssue%2Felectron-chat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/2ssue","download_url":"https://codeload.github.com/2ssue/electron-chat/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/2ssue%2Felectron-chat/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31671629,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-10T17:19:37.612Z","status":"online","status_checked_at":"2026-04-11T02:00:05.776Z","response_time":54,"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":["chatting-app","electron","firebase","react"],"created_at":"2025-12-27T06:37:50.941Z","updated_at":"2026-04-11T06:42:19.720Z","avatar_url":"https://github.com/2ssue.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Electron-Chat\n\nThis project converted this book's examples (electron-chat) to current version react and electron.\n\n\u003cimg src='http://image.yes24.com/momo/TopCate1389/MidCate008/138872871.jpg' width='300px'/\u003e\n\n## Install\n\n```bash\n$yarn \n```\n\n## Usage\n\n```bash\n# Note\n#\n# You have to make .env file before start.\n# This project don't inform server information. checkout `dev.env`\n$cd electron-chat\n# react build\n$yarn run build\n# run electron\n$yarn run electron\n```\n\n## Packaging\n\n```bash\n$Copy ./src/electron ./build/electron -Recurse\n$cd build\n# At electron/createWindows.js file, modify file path statement like this.\n# pathname: path.join(__dirname, '../index.html'),\n# \n# And create package.json file like below, and start packaging.\n# If you don't want to show raw code, use `--asar` option when packaging.\n$yarn run packager\n```\n\n### build/package.json\n\n```json\n{\n  \"name\": \"electron-chat\",\n  \"version\": \"1.0.0\",\n  \"description\": \"\",\n  \"main\": \"electron/electron-starter.js\",\n  \"scripts\": {\n    \"test\": \"echo \\\"Error: no test specified\\\" \u0026\u0026 exit 1\",\n    \"packager\": \"npx electron-packager . electron-chat --platform win32 --arch x64 --out release/\"\n  },\n  \"author\": \"\",\n  \"license\": \"ISC\"\n}\n```\n\n## Project Structure\n\nThis project's structure is based on [express generator](https://expressjs.com/ko/starter/generator.html)\n\n```bash\nelectron-chat\n├── 📁public\n├── 📂src\n│   ├── 📁electron              # about electron source\n│   ├── 📁router                # react component source\n│   ├── 📄 App.js\n│   ├── 📄 index.css\n│   ├── 📄 index.js             # entry point\n│   └── 📄 logo.svg\n├── .env                        # config file related firebase api. check dev.env\n├── package-lock.json\n└── package.json\n```\n\n## Tech\n\n| module name                                                         | description                                                                                                                                                                                                       |\n| ------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| [dotenv](https://www.npmjs.com/package/dotenv)                      | Dotenv is a zero-dependency module that loads environment variables from a .env file into process.env. Storing configuration in the environment separate from code is based on The Twelve-Factor App methodology. |\n| [create-react-app](https://www.npmjs.com/package/create-react-app)  | Create React apps with no build configuration.                                                                                                                                                                    |\n| [styled component](https://www.npmjs.com/package/styled-components) | Visual primitives for the component age. Use the best bits of ES6 and CSS to style your apps without stress 💅                                                                                                    |\n| [electron](https://www.npmjs.com/package/electron)                  | The Electron framework lets you write cross-platform desktop applications using JavaScript, HTML and CSS. It is based on Node.js and Chromium and is used by the Atom editor and many other apps.                 |\n| [firebase](https://www.npmjs.com/package/firebase)                  | Firebase provides the tools and infrastructure you need to develop, grow, and earn money from your app. This package supports web (browser), mobile-web, and server (Node.js) clients.                            |\n\n## Author\n\nSujeong Lee\n\n- Github: [@2ssue](https://github.com/2ssue)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F2ssue%2Felectron-chat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F2ssue%2Felectron-chat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F2ssue%2Felectron-chat/lists"}