#Svelte
- 少ないコード
- [[Virtual DOM]]を使わない
- 本当にreactive
> Svelte is a radical new approach to building user interfaces. Whereas traditional frameworks like React and Vue do the bulk of their work in the _browser_, Svelte shifts that work into a _compile step_ that happens when you build your app.
ブラウザでの実行内容ではなくコンパイルステップに重きを置いている。
> Instead of using techniques like virtual DOM diffing, Svelte writes code that surgically updates the DOM when the state of your app changes.
仮想DOMではなく、状態変化時に最適な更新を行えるようなコードを自動生成する。