What does svelte offer that React or Vue doesn’t?
Svelte compiles your code to a performant JavaScript and doesn’t have a virtual DOM.
Does virtual DOM really make React and Vue that slower than Svelte? Any benchmarks on this?
There is this benchmark which shows that Svelte is faster than React, Vue and Angular, but I think the compilation step and lack of virtual DOM is more than just the raw performance, otherwise I don’t think benchmarks are the most important.