vite

Vite is a build tool that aims to provide a faster and leaner development experience for modern web projects. It consists of two major parts: a dev server and a build command. Vite leverages native ES modules to serve code during development. This means the browser can directly request individual modules, avoiding the need for bundling during development, resulting in significantly faster startup times and hot module replacement (HMR). For production builds, Vite uses Rollup, which bundles the code for optimal performance and compatibility.