{"id":20401082,"url":"https://github.com/sohanemon/react-kickstart","last_synced_at":"2026-04-13T05:46:55.229Z","repository":{"id":151083472,"uuid":"537872451","full_name":"sohanemon/react-kickstart","owner":"sohanemon","description":null,"archived":false,"fork":false,"pushed_at":"2022-11-25T04:16:17.000Z","size":38101,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-15T11:52:24.197Z","etag":null,"topics":["react","tailwindcss"],"latest_commit_sha":null,"homepage":"https://react-kickstart.netlify.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/sohanemon.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":"2022-09-17T16:52:01.000Z","updated_at":"2022-12-30T14:53:25.000Z","dependencies_parsed_at":null,"dependency_job_id":"dce3e828-d73b-41db-ae82-8792de7ef26a","html_url":"https://github.com/sohanemon/react-kickstart","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sohanemon%2Freact-kickstart","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sohanemon%2Freact-kickstart/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sohanemon%2Freact-kickstart/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sohanemon%2Freact-kickstart/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sohanemon","download_url":"https://codeload.github.com/sohanemon/react-kickstart/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241950081,"owners_count":20047587,"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":["react","tailwindcss"],"created_at":"2024-11-15T04:47:48.983Z","updated_at":"2025-12-31T00:58:50.893Z","avatar_url":"https://github.com/sohanemon.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Initial setup\n![structure](https://www.xenonstack.com/hubfs/xenonstack-react-directory-structure.png)\n\n```sh\ncd src\nrm App.css\nmkdir assets components context hooks pages layouts features routes utils lib\ntouch .env\ncd components\nmkdir form ui\ncd ..\ncd pages\ntouch home.jsx login.jsx\ncd..\ncd layouts\ntouch main.jsx header.jsx footer.jsx\ncd ..\ncd routes\ntouch router.jsx privateRoute.jsx\ncd ..\n```\n\u003e utils are functions that implemented by me\n\n\u003e lib are function with third party libraries\n\n## Initial setup v2\n\n```sh\ntouch .env\necho '.env' \u003e\u003e .gitignore\ncd src\nrm App.css\nmkdir assets components context hooks pages layouts features routes utils lib\ncd components\nmkdir form ui\ncd ..\ncd pages\necho 'const Home = () =\u003e {\n  return \u003c\u003e\u003c/\u003e;\n};\n\nexport default Home;' \u003e home.jsx\necho 'const Login = () =\u003e {\n  return \u003c\u003e\u003c/\u003e;\n};\n\nexport default Login;' \u003e login.jsx\ncd ..\ncd layouts\necho 'const Main = () =\u003e {\n  return \u003c\u003e\u003c/\u003e;\n};\n\nexport default Main;' \u003e main.jsx\necho 'const Header = () =\u003e {\n  return \u003c\u003e\u003c/\u003e;\n};\n\nexport default Header;' \u003e header.jsx\necho 'const Footer = () =\u003e {\n  return \u003c\u003e\u003c/\u003e;\n};\n\nexport default Footer;' \u003e footer.jsx\ncd ..\ncd routes\necho 'const router=[]\n\nexport default router;' \u003e router.jsx\necho 'const PrivateRoute = () =\u003e {\n  return \u003c\u003e\u003c/\u003e;\n};\n\nexport default PrivateRoute;' \u003e private-route.jsx\n# 🚀 Done successfully\ncd ..\ncd ..\n\n\n```\n\n## Start with tailwind css CRA\n```sh\nnpm install -D tailwindcss postcss autoprefixer\nnpx tailwindcss init -p\necho '/** @type {import('tailwindcss').Config} */\nmodule.exports = {\n  content: [\n    \"./src/**/*.{js,jsx,ts,tsx}\",\n  ],\n  theme: {\n    extend: {},\n  },\n  plugins: [],\n}' \u003e tailwind.config.js\necho '@tailwind base;\n@tailwind components;\n@tailwind utilities;' \u003e src/index.css\n# 🚀 Successfully done\n\n```\n\n## Start with daisy ui\n```sh\nnpm i daisyui\necho '/** @type {import('tailwindcss').Config} */\nmodule.exports = {\n  content: [\n    \"./src/**/*.{js,jsx,ts,tsx}\",\n  ],\n  theme: {\n    extend: {},\n  },\n  plugins: [require(\"daisyui\")],\n}' \u003e tailwind.config.js\n# 🚀 DaisyUI installed successfully...\n\n```\n\n## Important libraries\n```sh\nnpm i react-router-dom axios @tanstack/react-query react-hot-toast react-icons firebase react-hook-form\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsohanemon%2Freact-kickstart","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsohanemon%2Freact-kickstart","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsohanemon%2Freact-kickstart/lists"}