No strings. No templates. Pure JS function calls for instant DOM mounting.
Fine‑grained signals update exactly what changes. No V‑DOM diffing overhead.
less than 3KB runtime. Infinitely smaller bundle than React, Vue or even Svelte.
Standard Vanilla JS. What you write is what the browser executes. Period.
SigPro replaces slow "Template Parsing" with High‑Efficiency Function Calls. While other frameworks force the browser to parse strings of HTML or execute complex JSX transformations, SigPro uses a direct functional approach.
| Feature | Standard HTML / JSX | SigPro Functional |
|---|---|---|
| Syntax | <div>Hello</div> | div("Hello") (or h('div', "Hello")) |
| Processing | Parse → Diff → Patch | Direct API Call |
| Overhead | High (V‑DOM / Parser) | Zero |
| Reactivity | Component‑wide | Atomic (Node‑level) |
By sharing a minuscule runtime, your final application bundle is infinitely smaller.
div(), button(), span()… These aren't just wrappers; they are pre‑optimized constructors. When you call div({ class: 'btn' }, "Click"), SigPro creates the element and attaches its reactive listeners in a single, surgical operation.
Because SigPro is so small, it is the only engine where the more code you write, the more the efficiency gap grows. While others grow linearly with components and framework overhead, SigPro stays flat, leveraging the native power of modern browser engines.
All components share the same atomic engine. One signal can update a single character in a paragraph across 100 components without ever re‑evaluating the component functions themselves.
Stop shipping 100KB of "Framework" for 2KB of business logic. SigPro gives you the tools to build ultra‑fast, modern apps with True Vanilla Performance.