DEV Community

Discussion on: Why Virtual DOM?

Collapse
 
hashiromer profile image
hashiromer • Edited

Svelte, Solid js and lit all of them provide declarative APIs without the overhead of a virtual DOM.

Solid js in particular is the fastest and one of the leanest frameworks out there having a declarative api.

solidjs.com/
lit.dev/
svelte.dev/

In my opinion, the value of VDOM based solutions is maturity and ecosystem around them, instead of performance or smaller bundle size.