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
}
})Release notes do not specify changes; details deferred to external CHANGELOG.md not provided here.
- –Review the CHANGELOG.md in the repository to identify breaking changes, new requirements, or migration steps.
- –No actionable information is available from the release notes text alone.
Release notes do not specify breaking changes, requirements, or fixes; refer to upstream CHANGELOG.md for details.
- –Review the official CHANGELOG.md in the repository to identify any breaking changes or migration steps.
- –No actionable information is provided in these release notes; treat as a maintenance or documentation update.
Release notes do not specify changes; details deferred to external CHANGELOG.md not provided here.
- –Consult the official CHANGELOG.md in the repository to identify bug fixes, features, or breaking changes.
- –No actionable upgrade steps or requirements can be extracted from the provided release notes alone.
See how people are using vite
Related Repositories
Discover similar tools and frameworks used by developers
AdminLTE
Production-ready Bootstrap 5 template with SCSS build tooling.
hls.js
JavaScript HLS client with MPEG-TS to MP4 transmuxing.
dash
Build reactive web apps with Python callbacks.
JetBrainsMono
Monospaced typeface optimized for coding with ligatures.
react-markdown
Render markdown as React components via unified.