{"id":18606038,"url":"https://github.com/hfagerlund/react-app-starter","last_synced_at":"2026-04-18T17:02:53.110Z","repository":{"id":164264933,"uuid":"264596087","full_name":"hfagerlund/react-app-starter","owner":"hfagerlund","description":"A Dockerized React app skeleton","archived":false,"fork":false,"pushed_at":"2024-04-01T15:46:08.000Z","size":412,"stargazers_count":0,"open_issues_count":8,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-16T19:47:48.257Z","etag":null,"topics":["docker","dockerized-react","minimal","react","seed-project","skeleton","starter","webpack"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hfagerlund.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2020-05-17T06:08:26.000Z","updated_at":"2023-06-24T02:30:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"ce8de114-cb8e-48a0-ace8-3a1c10900871","html_url":"https://github.com/hfagerlund/react-app-starter","commit_stats":null,"previous_names":[],"tags_count":2,"template":true,"template_full_name":null,"purl":"pkg:github/hfagerlund/react-app-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hfagerlund%2Freact-app-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hfagerlund%2Freact-app-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hfagerlund%2Freact-app-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hfagerlund%2Freact-app-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hfagerlund","download_url":"https://codeload.github.com/hfagerlund/react-app-starter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hfagerlund%2Freact-app-starter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31976805,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T16:27:12.723Z","status":"ssl_error","status_checked_at":"2026-04-18T16:27:11.140Z","response_time":103,"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":["docker","dockerized-react","minimal","react","seed-project","skeleton","starter","webpack"],"created_at":"2024-11-07T02:24:03.508Z","updated_at":"2026-04-18T17:02:53.055Z","avatar_url":"https://github.com/hfagerlund.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# README\n\n[react-app-starter](https://github.com/hfagerlund/react-app-starter/) is a simple ('[Docker](https://www.docker.com/)ized') [React](https://reactjs.org/) app skeleton.\n\nFork and modify this project as a time-saving and easy to understand starter for your own new [React](https://reactjs.org/) project.\n\n## Quick Start\n```\n$ git clone https://github.com/hfagerlund/react-app-starter.git\n$ cd react-app-starter\n$ yarn install\n$ yarn run build\n$ yarn run start\n# browser automatically opens to http://localhost:8080/build/home.html\n```\n\n### Using Docker\n```\n# start Docker\n$ sudo systemctl start docker\n\n# build the image\n## important - 'build' must not be listed in .dockerignore (else will fail)\n$ sudo docker build . -t my-react-app -f Dockerfile\n\n# list all images\n$ sudo docker images\n\n# run the container\n$ sudo docker run -p 8000:80 my-react-app\n\n# browse to http://localhost:8000/home.html\n```\n\n:tada:\n\n## What's going on here?\n* **[React](https://reactjs.org/)**, **[react-dom](https://github.com/facebook/react/tree/master/packages/react-dom)** - These libraries are installed using **[npm](https://www.npmjs.com/)**, the package manager for **[Node.js](https://nodejs.org/en/)**: `$ npm i -S {react,react-dom}`\n* **[Babel](https://babeljs.io/)** - Compiles JSX into JavaScript (for rendering in the browser);\n* **[JSX](https://reactjs.org/docs/introducing-jsx.html)** - A syntax extension to JavaScript used for creating React 'elements';\n* **[Webpack](https://webpack.js.org/)** - Module bundler (ie. runs the code through **Babel** etc.);\n  * **[HTML Webpack Plugin](https://github.com/jantimon/html-webpack-plugin)** - Generates an HTML file to render the generated bundle.js file in the browser;\n* **[Docker](https://www.docker.com/)** - The entire app is both built (using **[Yarn](https://yarnpkg.com/)**) and deployed (to **[NGINX](https://www.nginx.com/)**) inside Docker.\n\n(All copyrights for the above remain with their respective owners.)\n- - -\n## License\nCopyright (c) 2019 Heini Fagerlund. Licensed under the [BSD-3-Clause license](https://github.com/hfagerlund/react-app-starter/blob/master/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhfagerlund%2Freact-app-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhfagerlund%2Freact-app-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhfagerlund%2Freact-app-starter/lists"}