DEV Community

Discussion on: 5 things I love about Svelte

Collapse
 
somedood profile image
Basti Ortiz • Edited

I believe this conference talk from the creator of Svelte himself will answer your questions.

Unlike the frameworks that use virtual DOMs, Svelte compiles your code into the actual bare-bones JavaScript API for manipulating the DOM. It literally compiles to the raw document.getElementById instead of a bunch of abstractions that ultimately take a toll on performance.