Command
npm create vite@latest my-appExplanation
Creates a new Vite project with the specified template. Vite provides fast development server and optimized builds.
Examples
Create React app with Vite
npm create vite@latest my-react-app -- --template reactCreate Vue app with Vite
npm create vite@latest my-vue-app -- --template vueCreate Svelte app with Vite
npm create vite@latest my-svelte-app -- --template svelte