Modern frontend build tool
Provide a faster and smoother development experience for web projects.
// Support Vue, React, Svelte, or even plain JS projects.
npm create vite@latest my-app
- Instant Server Start:
- Vite uses native ES modules in the browser during development.
- Can start the dev server almost instantly, even for large projects.
- Fast Hot Module Replacement (HMR):
- Only the code that changes is updated in the browser without a full reload.
- Optimized Build:
- For production, Vite bundles code using Rollup, generating highly optimized and tree-shaken output.
- Rich Features:
- Support for TypeScript
- CSS modules & pre-processors
- Environment variables
- Plugins for added functionality