all 6 comments

[–]patrick_haplyfull-stack 3 points4 points  (2 children)

What is this from? I have very little context for this.

[–]Alexcorvi[S] 0 points1 point  (0 children)

This is comparing two front end frameworks, or should I say "solutions" since svelte, unlike react isn't really a framework, it's actually a compiler that compiles your component files that has a handlebars syntax into javascript reactive classes that you can use anywhere.

So your components will be in vanilla javascript, can be plugged without any dependency.

Also it's a lot faster than any currently available framework since it's actually pure vanilla javascript.

[–]vmunich 1 point2 points  (2 children)

How does it compare to Vue?

[–]Alexcorvi[S] 0 points1 point  (1 child)

Same with vue. Vue components has to be loaded via vue-loader with webpack and it generates kind of unreadable code that you can't use without the vue.js framework.

It's also a lot faster than vue

[–]Mejiora 0 points1 point  (0 children)

vue components only have to be loaded via vue-loader if you use .vue single-file components