{"id":28225420,"url":"https://github.com/eimaam/react-vite-typescript-tailwind-antd","last_synced_at":"2026-01-26T03:03:47.513Z","repository":{"id":293361123,"uuid":"983779725","full_name":"eimaam/react-vite-typescript-tailwind-antd","owner":"eimaam","description":"Personal template for Client Side Projects with React (Vite), TypeScript, Tailwind, Framer Motion","archived":false,"fork":false,"pushed_at":"2025-05-14T23:35:35.000Z","size":62,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"dev","last_synced_at":"2025-06-12T20:31:46.711Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/eimaam.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":"2025-05-14T22:54:28.000Z","updated_at":"2025-05-14T23:35:08.000Z","dependencies_parsed_at":"2025-05-15T00:47:48.040Z","dependency_job_id":null,"html_url":"https://github.com/eimaam/react-vite-typescript-tailwind-antd","commit_stats":null,"previous_names":["eimaam/react-vite-typescript-tailwind-antd"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/eimaam/react-vite-typescript-tailwind-antd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eimaam%2Freact-vite-typescript-tailwind-antd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eimaam%2Freact-vite-typescript-tailwind-antd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eimaam%2Freact-vite-typescript-tailwind-antd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eimaam%2Freact-vite-typescript-tailwind-antd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eimaam","download_url":"https://codeload.github.com/eimaam/react-vite-typescript-tailwind-antd/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eimaam%2Freact-vite-typescript-tailwind-antd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28765571,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T02:25:41.078Z","status":"ssl_error","status_checked_at":"2026-01-26T02:24:28.809Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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-05-18T10:09:49.779Z","updated_at":"2026-01-26T03:03:47.498Z","avatar_url":"https://github.com/eimaam.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# React 19 (Vite) + TypeScript Template\n\npersonal, modern, feature-rich template for building React applications with TypeScript, TailwindCSS, Framer Motion, and Ant Design. This template leverages the latest features of React 19 for improved performance and developer experience.\n\n## Features\n\n- ⚡️ **React 19** — The latest version with improved features and performance\n- 🚀 **Vite** — Lightning-fast development server and build tool\n- 🔷 **TypeScript** — Type-safe code for better developer experience\n- 🎨 **TailwindCSS** — Utility-first CSS framework\n- 🧩 **Ant Design** — Beautiful and accessible UI components\n- 🎭 **Framer Motion** — Animation library for React\n- 🌙 **Dark Mode** — Built-in dark mode support with theme toggle\n- 🎯 **ESLint** — Linting for better code quality\n- 📦 **Component Library** — Reusable UI components with consistent styling\n- 🔍 **Type-checked** — Fully typed components, props, and hooks\n\n## What's New in React 19\n\nThis template leverages several new features from React 19:\n\n- **`ref` as a prop** - Components now receive refs as props, making code simpler and more readable\n- **`use` API** - New API to read resources in render, including Promises and Context\n- **Context as a Provider** - Render Context directly as a provider instead of using Context.Provider\n- **Improved Error Handling** - Better error reporting with clear error messages\n- **Improved SSR** - Better server-side rendering capabilities\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js 18+ (Personally used v20.9.0 to cook the template/boilerplate )\n- npm or yarn\n\n### Installation\n\n```bash\n# Clone the repository\ngit clone https://github.com/eimaam/react-vite-typescript-tailwind-antd.git\n\n# Navigate to the project\ncd react-vite-typescript-tailwind-andt\n\n# Install dependencies\nnpm install\n# or\nyarn install\n\n# Start the development server\nnpm run dev\n# or\nyarn dev\n```\n\n## Project Structure\n\n```\n/\n├── public/          # Static files\n├── src/\n│   ├── components/  \n│   │   ├── ui/      # Reusable UI components\n│   │   └── layout/  # Layout components\n│   ├── utils/       # Utility functions\n│   ├── App.tsx      # Main app component\n│   ├── main.tsx     # Entry point\n│   └── index.css    # Global styles\n├── .gitignore\n├── index.html\n├── package.json\n├── tailwind.config.js\n├── tsconfig.json\n└── vite.config.ts\n```\n\n## UI Components\n\nThe template includes several ready-to-use UI components:\n\n- `Button` - Flexible button component with multiple variants using Ant Design\n- `Card` - Multi-purpose card component with various parts using Ant Design\n- `ThemeToggle` - Dark/light mode toggle with animation using Framer Motion\n- `Layout` - Page layout with Header and Footer components\n\n## Customization\n\n### Tailwind Theme\n\nThe TailwindCSS theme can be customized in `tailwind.config.js`. The template includes a comprehensive color palette with semantic color names and dark mode support.\n\n### Ant Design Theme\n\nAnt Design theming can be customized in the `App.tsx` file using the `ConfigProvider` component. The template demonstrates this with a custom theme.\n\n## Scripts\n\n- `npm run dev` - Start development server\n- `npm run build` - Build for production\n- `npm run preview` - Preview production build\n- `npm run lint` - Run ESLint\n\n## License\n\n[MIT](LICENSE) \n\n## Author\n\n[eimaam.dev](https://eimaam.dev) ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feimaam%2Freact-vite-typescript-tailwind-antd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feimaam%2Freact-vite-typescript-tailwind-antd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feimaam%2Freact-vite-typescript-tailwind-antd/lists"}