{"id":23720932,"url":"https://github.com/chrisuser/cra-template-complete-web-app","last_synced_at":"2025-10-20T07:01:35.391Z","repository":{"id":57210389,"uuid":"441454632","full_name":"ChrisUser/cra-template-complete-web-app","owner":"ChrisUser","description":"CRA template with: typescript, axios, sass, react-router, redux and much more already configured.","archived":false,"fork":false,"pushed_at":"2024-03-23T22:27:08.000Z","size":74,"stargazers_count":12,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-04-24T16:48:15.762Z","etag":null,"topics":["axios","create-react-app","jest","jest-tests","moment","momentjs","react","react-redux","react-router","react-router-dom","react-router-v6","reactjs","redux","reduxjs","sass","template","typescript"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/cra-template-complete-web-app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ChrisUser.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":"2021-12-24T11:59:37.000Z","updated_at":"2024-06-12T17:18:31.551Z","dependencies_parsed_at":"2024-01-18T00:30:48.921Z","dependency_job_id":"1452cb3d-6a3b-4b06-9799-8f93a93e505e","html_url":"https://github.com/ChrisUser/cra-template-complete-web-app","commit_stats":{"total_commits":32,"total_committers":2,"mean_commits":16.0,"dds":0.15625,"last_synced_commit":"12a572a3f1ae139adfc0076ebc8b9b9c662314ce"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChrisUser%2Fcra-template-complete-web-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChrisUser%2Fcra-template-complete-web-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChrisUser%2Fcra-template-complete-web-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ChrisUser%2Fcra-template-complete-web-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ChrisUser","download_url":"https://codeload.github.com/ChrisUser/cra-template-complete-web-app/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":231918512,"owners_count":18445748,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["axios","create-react-app","jest","jest-tests","moment","momentjs","react","react-redux","react-router","react-router-dom","react-router-v6","reactjs","redux","reduxjs","sass","template","typescript"],"created_at":"2024-12-30T22:15:42.949Z","updated_at":"2025-10-20T07:01:35.298Z","avatar_url":"https://github.com/ChrisUser.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cra-template-complete-web-app\n\nCRA template with: typescript, axios, sass, react-router, redux and much more already configured.\n\n\u003e [!IMPORTANT]\n\u003e Create React App is ([unofficially](https://github.com/facebook/create-react-app/issues/13393)) becoming an unsupported tool, for this reason i've created a [new template](https://github.com/ChrisUser/vite-complete-react-app) using Vite with the same features as this one.\\\n\u003e I will continue to support this template for as long as possible but I strongly suggest you to switch to the newer one.\n\n\u003cdiv align=\"center\"\u003e\n    \u003ch1\u003e✨ Now supports React 19 and React Router 7 ✨\u003c/h1\u003e\n\u003c/div\u003e\n\n## ⚗️ Technologies list\n\n- [TypeScript](https://www.typescriptlang.org/)\n- [Sass](https://sass-lang.com/)\n- [Redux Toolkit](https://redux-toolkit.js.org/)\n- [Router](https://reactrouter.com/)\n- [Axios](https://axios-http.com/)\n- [Moment](https://momentjs.com/)\n- [ESlint](https://eslint.org/) \u0026 [Prettier](https://prettier.io/)\n\n\u003cbr /\u003e\n\n# 🚀 Start using it\n\nTo use this template for your app you can run:\n\n```sh\nnpx create-react-app my-app --template complete-web-app\n```\n\nor\n\n```sh\nyarn create react-app my-app --template complete-web-app\n```\n\nThe `--template` parameter points to this template, note that `cra-template-` prefix is omitted.\n\n# ⚠️ Warning\n\nCloning this repo pulls down the template only, not a bundled and configured Create React App.\n\n\u003cbr /\u003e\n\n# 🧬 Template structure\n\nThis is the structure of the files in the template:\n\n```sh\n    │\n    ├── public                  # public files (favicon, .htaccess, manifest, ...)\n    ├── src                     # source files\n    │   ├── components\n    │   ├── pages\n    │   ├── resources           # images, constants and other static resources\n    │   ├── store               # Redux store\n    │   │   ├── actions         # store's actions\n    │   │   └── reducers        # store's reducers\n    │   ├── styles\n    │   ├── tests               # all test files\n    │   ├── types               # data interfaces\n    │   ├── utility             # utilities functions and custom components\n    │   ├── App.tsx\n    │   ├── index.tsx\n    │   ├── react-app-env.d.ts\n    │   ├── RootComponent.tsx   # React component with all the routes\n    │   ├── serviceWorker.ts\n    │   └── setupTests.ts\n    ├── .eslintrc.js\n    ├── .gitignore\n    ├── .prettierrc\n    ├── package.json\n    ├── README.md\n    └── tsconfig.json\n```\n\n\u003cbr /\u003e\n\n# 📖 Learn More\n\nThis package includes scripts and configuration used by [Create React App](https://github.com/facebook/create-react-app).\\\nPlease refer to its documentation:\n\n- [Getting Started](https://facebook.github.io/create-react-app/docs/getting-started) – How to create a new app.\n- [User Guide](https://facebook.github.io/create-react-app/) – How to develop apps bootstrapped with Create React App.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchrisuser%2Fcra-template-complete-web-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchrisuser%2Fcra-template-complete-web-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchrisuser%2Fcra-template-complete-web-app/lists"}