Skip to content

Instantly share code, notes, and snippets.

View YDrogen's full-sized avatar
🎯
Focusing

YDrogen YDrogen

🎯
Focusing
View GitHub Profile
@sapphi-red
sapphi-red / vite-4.3-perf.md
Last active April 27, 2024 05:32
Vite 4.3 performance

Terms

  • start up time: the time from "the command is executed" to the time "load event is triggered in browser".

  • root HMR time: the time from "the root file is changed" to the time "that file is executed in browser".

  • leaf HMR time: the time from "the leaf file is changed" to the time "that file is executed in browser".

  • cold start: the dependency optimization cache is deleted before each run

  • hot start: the dependency optimization cache exists by each run

Summary