Virtual DOM overhead
đ Wiki page | đ Last updated: Jan 21, 2022Contrary to the popular belief, Virtual DOM has a lot of CPU and memory overhead.
In React (and other similar libs), you're each time re-creating a whole vdom tree from scratch, diff-ing that tree with a previous one and then applying the changes to the real DOM.
For something lighter and more efficent, check out libs like lit-html and hyperHTML (they are using es6 template literals, so they understand which parts are static and which can change).
Alternatively, see Thin client SPA for places where you can use server side rendering.
Ask me anything / Suggestions
If you find this site useful in any way, please consider supporting it.