V
License:MIT
Open source Self-hostable Vite
About
A next-generation frontend build tool that serves source over native ES modules in dev and bundles with Rollup for production. Known for its instant cold starts and lightning-fast HMR across Vue, React, Svelte and plain JavaScript projects.
Pricing
Free
Vite is a build tool that gives frontend developers instant server startup by leveraging native ES modules, and fast production builds through pre-bundled Rollup output. It is framework-agnostic and ships first-class plugins for Vue, React, Svelte, Solid and more.
Key Features
- Instant dev server: native ESM means near-zero cold start, even on large codebases.
- Fast HMR: hot updates stay fast regardless of file count.
- Framework-agnostic: Vue, React, Svelte, Solid, Preact and vanilla all supported.
- Rich plugin ecosystem: Rollup-compatible plugins plus Vite-specific ones.
- Built-in TypeScript & JSX support out of the box.
- SSR & library mode for building component libraries.
Pricing
Vite is free and open source under the MIT license.
Getting Started
npm create vite@latest my-app
cd my-app
npm install
npm run dev
For library mode, run npm create vite@latest my-lib -- --template vanilla-ts and set build.lib in vite.config.ts.