{"id":28250297,"url":"https://github.com/donedeal0/alright-react-app","last_synced_at":"2025-10-10T07:33:12.137Z","repository":{"id":38104074,"uuid":"481352231","full_name":"DoneDeal0/alright-react-app","owner":"DoneDeal0","description":"Professional React app generator. Comes with an exposed, unopinionated, high performance configuration. Jest, SWC, Storybook, Typescript 5, Webpack 5.","archived":false,"fork":false,"pushed_at":"2025-02-19T14:08:28.000Z","size":60,"stargazers_count":138,"open_issues_count":1,"forks_count":8,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-10T07:32:31.370Z","etag":null,"topics":["alright","alright-alright-alright","alright-react-app","create-react-app","generator","react","reactjs","template","template-project"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/alright-react-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/DoneDeal0.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,"zenodo":null}},"created_at":"2022-04-13T19:40:45.000Z","updated_at":"2025-07-10T11:14:14.000Z","dependencies_parsed_at":"2024-08-03T06:02:15.206Z","dependency_job_id":"be9914cf-f0fc-4cd9-a40a-da366d5b16e1","html_url":"https://github.com/DoneDeal0/alright-react-app","commit_stats":{"total_commits":15,"total_committers":1,"mean_commits":15.0,"dds":0.0,"last_synced_commit":"567a6ef12550d2c5f36f2c6962c60566df6a26e3"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/DoneDeal0/alright-react-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DoneDeal0%2Falright-react-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DoneDeal0%2Falright-react-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DoneDeal0%2Falright-react-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DoneDeal0%2Falright-react-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DoneDeal0","download_url":"https://codeload.github.com/DoneDeal0/alright-react-app/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DoneDeal0%2Falright-react-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279003189,"owners_count":26083533,"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","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"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":["alright","alright-alright-alright","alright-react-app","create-react-app","generator","react","reactjs","template","template-project"],"created_at":"2025-05-19T14:17:44.778Z","updated_at":"2025-10-10T07:33:12.132Z","avatar_url":"https://github.com/DoneDeal0.png","language":"JavaScript","funding_links":["https://www.buymeacoffee.com/donedeal0"],"categories":[],"sub_categories":[],"readme":"\u003cimg width=\"952\" alt=\"Screenshot 2023-04-19 at 12 52 14\" src=\"https://user-images.githubusercontent.com/43271780/233053479-bb7dac6e-f992-436a-87d8-5be11f9d92b6.png\"\u003e\n\n# ALRIGHT REACT APP\n\nProfessional React app generator. Comes with an exposed, unopinionated, high performance configuration.\nJest, SWC, Storybook 7, Typescript 5, Webpack 5.\n\n\u003cimg width=\"483\" alt=\"screenshot\" src=\"https://user-images.githubusercontent.com/43271780/233714020-52d818b3-5080-4b54-b328-b68832661fc3.png\"\u003e\n\n# GETTING STARTED\n\nIn your terminal, type:\n\n```js\nnpx alright-react-app\n```\n\nThe `npx` command is available if `npm` is installed globally on your computer.\n**Alright React App** will ask you to enter an application name. Then you just have to press `enter`.\n\nThe following folder will be created at the root of your current working directory:\n\n```\nmy-app\n├── webpack.config.js\n├── tsconfig.json\n├── README.md\n├── package.json\n├── jest.swc.config.js\n├── custom.d.ts\n├── .swcrc\n├── .gitignore\n├── .eslintrc.js\n├── .eslintignore\n├── .env\n└── src\n    ├── index.tsx\n    ├── index.html\n    ├── app.tsx\n    ├── app.test.ts\n    └── pages\n        └── home\n            ├── index.tsx\n            ├── home.css\n    └── components\n        └── error-boundary\n            ├── index.tsx\n            ├── layout.tsx\n        └── title\n            ├── index.tsx\n            ├── stories.tsx\n     └── assets\n        └── images\n            ├── favicon.png\n        └── svg\n            ├── logo.svg\n└── .storybook\n    ├── main.js\n    ├── preview.js\n\n```\n\nOnce the application is created, type `cd my-app'.\n\n# COMMANDS\n\n**DEV**: `npm run dev`\n\n**BUILD**: `npm run build`\n\n**STORYBOOK**: `npm run storybook`\n\n**TEST**: `npm run test`\n\n# STORYBOOK\n\nYou must install Storybook globally: `npm i -g @storybook/cli` to use it.\n\n## CREDITS\n\nDoneDeal0\n\n## SUPPORT\n\nIf you or your company is using the Alright React App, please show your support by buying me a coffee:\nhttps://www.buymeacoffee.com/donedeal0\n\n\u003cbr/\u003e\n\u003ca href=\"https://www.buymeacoffee.com/donedeal0\" target=\"_blank\"\u003e\n\u003cimg src=\"https://user-images.githubusercontent.com/43271780/178990049-46b05704-1344-4d55-a5a7-7265724edc5c.png\"/\u003e\n\u003c/a\u003e\n\u003cbr/\u003e\n\n## CONTRIBUTING\n\nPull requests are welcome!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdonedeal0%2Falright-react-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdonedeal0%2Falright-react-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdonedeal0%2Falright-react-app/lists"}