Hacker News new | ask | show | jobs
by akvadrako 2295 days ago
Svelte is not like other frameworks. The core is basically one thing, which is to generate code that updates components when data they depend on changes, just like you would do it yourself when not using a framework. There is no runtime or shadow DOM or anything.

That means you can write in a more functional style: input data -> output HTML+CSS.