Vite: Frontend build tool and dev server
Native ESM dev server with Rollup production builds.
Learn more about Vite
Vite is a build tool and development server for frontend projects. It consists of two components: a dev server that serves source files as native ES modules with Hot Module Replacement support, and a build command that bundles code with Rollup for production. The tool is written in Node.js and provides a plugin system based on Rollup's plugin interface. Vite is used for building web applications with various frameworks and supports both single-page applications and library projects.

Native ES module serving
The dev server serves source files directly as ES modules rather than bundling them during development. This approach allows the server to start quickly and handle file changes without rebundling the entire application.
Rollup-based production builds
Production builds use Rollup for bundling with pre-configured optimization settings. This separation between development and production build tools allows different trade-offs optimized for each environment.
Plugin API and extensibility
Vite provides a plugin interface based on Rollup's plugin system along with a JavaScript API. This allows developers to extend functionality and integrate custom build logic into both dev and production workflows.
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 3000,
open: true
}
})See how people are using Vite
Top in Developer Tools
Related Repositories
Discover similar tools and frameworks used by developers
Swag
CLI tool that generates Swagger 2.0 API documentation from Go source code annotations.
plotly.py
Interactive browser-based charts from Python with declarative API.
Git
Snapshot-based version control with distributed repository architecture.
Moq
Mock .NET objects using lambda expressions and LINQ.
Keiyoushi Extensions
Extension management for the Keiyoushi multi-source content aggregation platform.