{"id":24908866,"url":"https://github.com/labelementary/react-essential","last_synced_at":"2026-02-10T02:01:41.284Z","repository":{"id":250883318,"uuid":"835738583","full_name":"labelementary/react-essential","owner":"labelementary","description":"React Essential, An Essential Template to get started with react.js application with all the essentials included.","archived":false,"fork":false,"pushed_at":"2025-11-22T06:57:38.000Z","size":542,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-11-22T08:28:55.963Z","etag":null,"topics":["biomejs","husky","react","react-router","tailwindcss","tanstack-router","typescript","vite"],"latest_commit_sha":null,"homepage":"https://elementary.vgseven.com","language":"TypeScript","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/labelementary.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":"2024-07-30T12:40:56.000Z","updated_at":"2025-11-22T06:57:42.000Z","dependencies_parsed_at":"2024-09-03T17:28:36.322Z","dependency_job_id":"b0023a8d-35f1-4c32-9e3e-22d6a073da47","html_url":"https://github.com/labelementary/react-essential","commit_stats":null,"previous_names":["radiumlabs/react-essential","labelementary/react-essential"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/labelementary/react-essential","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/labelementary%2Freact-essential","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/labelementary%2Freact-essential/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/labelementary%2Freact-essential/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/labelementary%2Freact-essential/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/labelementary","download_url":"https://codeload.github.com/labelementary/react-essential/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/labelementary%2Freact-essential/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29288730,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T21:57:15.303Z","status":"online","status_checked_at":"2026-02-10T02:00:07.935Z","response_time":65,"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":["biomejs","husky","react","react-router","tailwindcss","tanstack-router","typescript","vite"],"created_at":"2025-02-02T02:34:04.059Z","updated_at":"2026-02-10T02:01:41.279Z","avatar_url":"https://github.com/labelementary.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# React Essential\n\nReact Essential - An Essential Template to get started with React.js application with all the essentials included...\n\n## Features\n\n- ✨ Library: [React](https://reactjs.org/) with [Vite](https://vitejs.dev/) - Fast and efficient development environment\n- 🚀 Styling: [Tailwind CSS](https://tailwindcss.com/) - Utility-first CSS framework\n- 💻 Language: [TypeScript](https://www.typescriptlang.org/) - Typed superset of JavaScript\n- 🧹 Linting and Formatting: [Biome.js](https://biomejs.dev/) - Fast and customizable linter and formatter\n- 🎨 Themes: [next-themes](https://github.com/pacocoursey/next-themes) - Easy theming for React.js.\n- 💄 Icons: [lucide-react](https://lucide.dev/) - A comprehensive set of icons for React.js\n- ⚙️ Build: Github Actions - Automated workflows for CI/CD\n- 🛠 Commit: [Husky](https://typicode.github.io/husky/) - Git hooks made easy\n- 📦 Package: [pnpm](https://pnpm.io/) - Fast, disk space efficient package manager\n- 🚀 Routing: [TanStack Router](https://tanstack.com/router/v1) - Type-safe routing for React\n\n## Project Structure\n\n- `src/`: Source code directory\n  - `/routes`: Contains all routes and pages\n  - `/components`: Contains reusable, presentational components that can be shared across different parts of the application.\n  - `/primitives`: Contains basic UI elements or primitive components such as buttons, inputs, etc., that are used in building more complex components.\n  - `/hooks`: Contains custom React hooks for specific logic or functionality that can be reused across the app.\n  - `/interfaces`: Contains TypeScript interfaces that define types for the app's data models or API responses.\n  - `/lib`: Includes helper functions, utilities, and configuration files like API clients, authentication methods, etc.\n  - `/providers`: Contains context providers for managing global state across the application.\n  - `/styles`: Global styles and theme configuration\n- `public/`: Static assets and images\n\n## Getting Started\n\n1. Clone the repository\n2. Install dependencies: `pnpm install`\n3. Run the development server: `pnpm run dev`\n4. Open [http://localhost:5173](http://localhost:5173) in your browser\n\n## Guidelines\n\n- Keep reusable components in the components/ folder\n- Place primitive components like buttons, inputs, etc., in the primitives/ folder\n- Store hooks in the hooks/ folder to make them easily reusable\n- Define all interfaces in the interfaces/ folder\n- Store helpers, utilities, and configurations in the lib/ folder\n- Use context and global state management with the providers/ folder\n- Follow the TypeScript and Biome.js linting rules\n- Use Husky pre-commit hooks to ensure code quality\n\n## Customization\n\n- Modify the theme in `tailwind.config.ts`\n- Adjust global styles in `src/styles/root-layout.css`\n- Configure Vite settings in `vite.config.ts`\n\n## Available Scripts\n\n- `pnpm run dev`: Start the development server\n- `pnpm run build`: Build the production-ready application\n- `pnpm run typecheck`: Run TypeScript type checking\n- `pnpm run lint`: Run Biome.js linter\n- `pnpm run lint:fix`: Run Biome.js linter and fix issues\n- `pnpm run format`: Format code using Biome.js\n\n## Contributing\n\nContributions are welcome! Please follow these steps:\n\n1. Fork the repository\n2. Create a new branch: `git checkout -b feature/your-feature-name`\n3. Make your changes and commit them: `git commit -m 'Add some feature'`\n4. Push to the branch: `git push origin feature/your-feature-name`\n5. Submit a pull request\n\nFor major changes, please open an issue first to discuss what you would like to change.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flabelementary%2Freact-essential","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flabelementary%2Freact-essential","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flabelementary%2Freact-essential/lists"}