{"id":33430496,"url":"https://github.com/codemitrayt/react-js-template","last_synced_at":"2026-06-16T09:31:19.887Z","repository":{"id":323784684,"uuid":"1094677905","full_name":"codemitrayt/react-js-template","owner":"codemitrayt","description":"React.JS template follows best practices with Shadcn UI component library.","archived":false,"fork":false,"pushed_at":"2026-03-12T15:16:19.000Z","size":688,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-12T21:27:31.605Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://react-js-template-sandy.vercel.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/codemitrayt.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-12T03:03:06.000Z","updated_at":"2026-02-25T16:48:03.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/codemitrayt/react-js-template","commit_stats":null,"previous_names":["codemitrayt/react-js-template"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/codemitrayt/react-js-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codemitrayt%2Freact-js-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codemitrayt%2Freact-js-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codemitrayt%2Freact-js-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codemitrayt%2Freact-js-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codemitrayt","download_url":"https://codeload.github.com/codemitrayt/react-js-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codemitrayt%2Freact-js-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34400451,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-16T02:00:06.860Z","response_time":126,"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":[],"created_at":"2025-11-24T08:05:09.098Z","updated_at":"2026-06-16T09:31:19.882Z","avatar_url":"https://github.com/codemitrayt.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# React.js Template\n\nThis repository is a **React.js template** that follows **best React.js practices** with the **Shadcn UI** library. It provides a solid foundation for building modern, scalable React applications with a comprehensive set of pre-configured tools and components.\n\n## ✨ Features\n\n- ⚡ **Vite** - Lightning-fast build tool and dev server\n- 🎨 **Shadcn UI** - Beautiful, accessible component library built on Radix UI\n- 🎯 **React Router** - Declarative routing for React applications\n- 🔄 **Redux Toolkit** - Predictable state management with Redux Toolkit\n- 📝 **React Hook Form** - Performant forms with easy validation\n- ✅ **Zod** - TypeScript-first schema validation\n- 🎨 **Tailwind CSS** - Utility-first CSS framework\n- 🔐 **Authentication** - Pre-built authentication pages and hooks\n- 📱 **Responsive Design** - Mobile-first approach with custom hooks\n- 🛠️ **ESLint \u0026 Prettier** - Code quality and formatting tools\n- 🎭 **Dark Mode** - Theme support with next-themes\n\n## 🚀 Getting Started\n\n### Prerequisites\n\n- Node.js (v18 or higher)\n- npm or yarn\n\n### Installation\n\n1. Clone the repository:\n\n```bash\ngit clone https://github.com/codemitrayt/react-js-template\ncd react-js-template\n```\n\n2. Install dependencies:\n\n```bash\nnpm install\n```\n\n3. Start the development server:\n\n```bash\nnpm run dev\n```\n\nThe application will be available at `http://localhost:8888`\n\n## 📜 Available Scripts\n\n- `npm run dev` - Start the development server\n- `npm run build` - Build for production\n- `npm run preview` - Preview the production build\n- `npm run lint` - Run ESLint\n- `npm run lint:fix` - Fix ESLint errors automatically\n- `npm run format` - Format code with Prettier\n- `npm run format:check` - Check code formatting\n\n## 📁 Project Structure\n\n```\nsrc/\n├── apis/              # API configuration and endpoints\n├── assets/            # Static assets (images, icons, etc.)\n├── components/        # React components\n│   ├── shared/        # Shared components (header, footer, etc.)\n│   └── ui/            # Shadcn UI components\n├── constants/         # Application constants\n├── hooks/             # Custom React hooks\n├── layouts/           # Layout components\n├── lib/               # Utility functions and helpers\n├── pages/             # Page components\n│   ├── auth/          # Authentication pages\n│   ├── home/          # Home page\n│   └── not-found/     # 404 page\n├── request/           # HTTP request configuration\n├── store/             # Redux store and slices\n├── app.jsx            # Main app component\n├── main.jsx           # Application entry point\n└── routes.jsx         # Route configuration\n```\n\n## 🎨 Shadcn UI Components\n\nThis template includes a comprehensive set of Shadcn UI components:\n\n- Accordion, Alert, Alert Dialog, Avatar\n- Badge, Breadcrumb, Button, Calendar\n- Card, Carousel, Chart, Checkbox\n- Dialog, Drawer, Dropdown Menu\n- Form, Input, Label, Select\n- Table, Tabs, Textarea, Tooltip\n- And many more...\n\nAll components are fully customizable and follow accessibility best practices.\n\n## 🔧 Key Technologies\n\n- **React 19** - Latest React with modern features\n- **Vite** - Next-generation frontend tooling\n- **Tailwind CSS 4** - Utility-first CSS framework\n- **Redux Toolkit** - State management\n- **React Router 7** - Routing library\n- **React Hook Form** - Form handling\n- **Zod** - Schema validation\n- **Radix UI** - Unstyled, accessible component primitives\n\n## 🏗️ Best Practices\n\nThis template follows React.js best practices including:\n\n- ✅ Component composition and reusability\n- ✅ Custom hooks for shared logic\n- ✅ Proper state management with Redux Toolkit\n- ✅ Form validation with React Hook Form + Zod\n- ✅ Code splitting and lazy loading\n- ✅ Consistent code formatting with Prettier\n- ✅ ESLint rules for code quality\n- ✅ Organized project structure\n- ✅ Type-safe development patterns\n\n## 📝 License\n\nThis project is open source and available under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodemitrayt%2Freact-js-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodemitrayt%2Freact-js-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodemitrayt%2Freact-js-template/lists"}