# create-classic-vite-cli

a fast create webapp template cli, perfect engineering development experience, currently supported template presets include:

-  `react-tailwind-v4` (React + Vite + Tailwind-v4)
-  `react-tailwind-v4-with-router` (React + Vite + Tailwind-v4 + react-router-dom-v6)
-  `react-tailwind-ts` (React + TypeScript + Vite + Tailwind)

## Quick Start

> **Compatibility Note:**
> Vite requires [Node.js](https://nodejs.org/en/) version 14.18+, 16+. However, some templates require a higher Node.js version to work, please upgrade if your package manager warns about it.

With Run:

```bash
# npm
$ npm create classic-vite-cli@latest

# pnpm
$ pnpm create classic-vite-cli@latest
```

Then follow the prompts!

You can also directly specify the project name and the template you want to use via additional command line options. For example, to scaffold a Vite + React project, run:

```bash
# npm
npm create classic-vite-cli@latest my-react-app --template react-tailwind-ts

# pnpm
pnpm create classic-vite-cli@latest my-react-app --template react-tailwind-ts
```

template presets detail:

-  `react-tailwind-ts` [template](https://github.com/Ashish-simpleCoder/create-classic-vite-cli/tree/main/template-react-tailwind-ts)
-  `react-tailwind-v4` [template](https://github.com/Ashish-simpleCoder/create-classic-vite-cli/tree/main/template-react-tailwind-v4)
-  `react-tailwind-v4-with-router` [template](https://github.com/Ashish-simpleCoder/create-classic-vite-cli/tree/main/template-react-tailwind-v4-with-router)
