diff --git a/README.md b/README.md index 30277cf..6d9e14d 100644 --- a/README.md +++ b/README.md @@ -7,11 +7,13 @@ A lightweight, function-based frontend framework with fine-grained reactivity, d ## Why SibuJS? -- **Zero VDOM:** Updates only what changes, directly in the DOM. -- **Function-Based:** Components are just plain functions. No classes, no complex life cycles. -- **Fine-Grained Reactivity:** Powered by lightweight signals. -- **No Build Step Required:** Works natively in the browser, but includes a Vite plugin for advanced optimizations. -- **Modular & Lean:** Core is minimal; features like Router and i18n are optional plugins. +- **Zero VDOM:** Signals bind straight to the DOM, so only the exact node that changed updates — no diffing, no reconciliation. +- **Function-Based:** Components are plain functions returning nodes. No classes, no hooks rules, no compiler-only syntax. +- **Fine-Grained Reactivity:** `signal`, `derived`, and `effect` track dependencies automatically and update at the value level. +- **No Build Step Required:** Runs natively in the browser (or via a ` + +``` ---