Tag

Dependency Pre‑bundling

1 views collected around this technical thread.

Beike Product & Technology
Beike Product & Technology
Jan 27, 2022 · Frontend Development

Understanding Vite: Architecture, Plugin Mechanism, and Development Workflow

This article explains how Vite leverages native ES modules, esbuild pre‑bundling, and a flexible plugin system to provide instant dev‑server startup, fast hot‑module replacement, and efficient dependency handling, contrasting its approach with traditional bundlers like webpack.

Dependency Pre‑bundlingES ModulesVite
0 likes · 17 min read
Understanding Vite: Architecture, Plugin Mechanism, and Development Workflow
WeDoctor Frontend Technology
WeDoctor Frontend Technology
May 23, 2021 · Frontend Development

Building a Minimal Vite Dev Server from Scratch: A Step‑by‑Step Guide

This article walks through the source‑code analysis of Vite, explains why Vite rewrites import paths and creates a .vite folder, and provides a complete, minimal implementation of a Vite‑like development server using esbuild, connect middleware, and Vue SFC compilation.

Dependency Pre‑bundlingDev ServerVite
0 likes · 19 min read
Building a Minimal Vite Dev Server from Scratch: A Step‑by‑Step Guide