docs: streamline formatting and proofreading

This commit is contained in:
Stefan Rotsch
2023-10-16 12:22:46 +02:00
committed by Stefan Rotsch
parent 2c541dfbea
commit 94ac286c34
43 changed files with 177 additions and 257 deletions

View File

@@ -5,8 +5,10 @@ quadrant: tools
tags: [frontend, coding]
---
As modern browsers nowadays allow native usage of [ES Modules](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules) it is possible to use it for improving frontend development which is the goal of [Vite](https://vitejs.dev/guide/why.html).
Since it's announcement in 2020, Vite picked up a lot of attention and was able to grow a large community providing pluggable features.
Vite brings two things, a native ESM based dev-server and a bundler for production builds.
The dev-server features an improved performance during development as modules are loaded and transpiled only on demand. This leads to faster cold-start times and quicker HMR.
We see Vite as a stable and production ready tool, and would recommend it for upcoming projects.
As modern browsers now support the native usage of [ES Modules](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules), it's possible to use them to enhance frontend development, which is the goal of [Vite](https://vitejs.dev/guide/why.html).
Since its announcement in 2020, Vite has garnered significant attention and has grown a large community that provides pluggable features. Vite offers two key components: a native ESM-based development server and a bundler for production builds.
The development server boasts improved performance during development, as modules are loaded and transpiled only on demand. This leads to faster cold-start times and quicker Hot Module Replacement (HMR) support.
We consider Vite to be a stable and production-ready tool, and we would recommend it for upcoming projects.