A modern CLI tool to quickly scaffold a new React 19 project with Tailwind CSS v4 using Vite as the build tool.
- ⚛️ React 19 with the latest features
- 🎨 Tailwind CSS v4 pre-configured
- ⚡ Lightning-fast builds with Vite
- 🔄 TypeScript support (optional)
- 📦 Works with npm, yarn, or pnpm
- 🚀 Zero configuration setup
- 💅 Includes sample component to demonstrate Tailwind usage
npx @ksol8/create-react-tailwind-app@latest my-app
Run the CLI tool and follow the prompts:
create-react-tailwind-app
Or specify a project name directly:
create-react-tailwind-app my-awesome-app
Use the -y
flag to skip all prompts and use defaults (TypeScript enabled, npm as package manager):
create-react-tailwind-app my-app -y
Option | Description |
---|---|
[project-name] |
Name of your project (optional) |
-y, --yes |
Skip all prompts and use defaults |
-v, --version |
Output the version number |
The generated project includes:
- React 19 configured with Vite
- Tailwind CSS v4 with PostCSS
- Sample component demonstrating Tailwind usage
- Ready-to-use project structure
- Node.js 16.x or higher
- npm, yarn, or pnpm
To contribute to this project:
- Clone the repository
- Install dependencies:
npm install
- Link the package locally:
npm link
- Now you can run
create-react-tailwind-app
locally
ISC © Kuldeep Solanki