Files
sigpro/docs
natxocc 820d55b012
All checks were successful
Deploy Docs to Synology / deploy (push) Successful in 4s
Docs
2026-05-02 00:37:15 +02:00
..
2026-05-02 00:37:15 +02:00
2026-05-02 00:37:15 +02:00
2026-04-27 15:22:57 +02:00
2026-04-26 15:38:10 +02:00
2026-04-28 19:05:23 +02:00
2026-03-20 01:11:32 +01:00
2026-04-27 15:22:57 +02:00
2026-05-01 23:11:47 +02:00

SigPro Logo

SigPro

Atomic Unified Reactive Engine
"The efficiency of direct DOM manipulation with the elegance of functional reactivity."

FUNCTIONAL

No strings. No templates. Pure JS function calls for instant DOM mounting.

ATOMIC

Finegrained signals update exactly what changes. No VDOM diffing overhead.

ULTRATHIN

Sub3KB runtime. Infinitely smaller bundle than React, Vue or even Svelte.

COMPILERFREE

Standard Vanilla JS. What you write is what the browser executes. Period.

Functional DOM Construction

SigPro replaces slow "Template Parsing" with HighEfficiency Function Calls. While other frameworks force the browser to parse strings of HTML or execute complex JSX transformations, SigPro uses a direct functional approach.

FeatureStandard HTML / JSXSigPro Functional
Syntax<div>Hello</div>div("Hello") (or h('div', "Hello"))
ProcessingParse → Diff → PatchDirect API Call
OverheadHigh (VDOM / Parser)Zero
ReactivityComponentwideAtomic (Nodelevel)

Less Code, More Power

By sharing a minuscule runtime, your final application bundle is infinitely smaller.

  • React/Vue: You ship a heavy orchestrator (~3090KB) just to say "Hello World".
  • Solid/Svelte: You still depend on a compilation step that generates extra boilerplate.
  • SigPro: You ship Pure Vanilla JS. The runtime is so small that it often costs less than a single highres icon.

Precision Engineering

1. Functional Efficiency

div(), button(), span()… These aren't just wrappers; they are preoptimized constructors. When you call div({ class: 'btn' }, "Click"), SigPro creates the element and attaches its reactive listeners in a single, surgical operation.

2. The "NoBundle" Bundle

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.

3. Shared Runtime

All components share the same atomic engine. One signal can update a single character in a paragraph across 100 components without ever reevaluating the component functions themselves.

Kill the Bloat.

Stop shipping 100KB of "Framework" for 2KB of business logic. SigPro gives you the tools to build ultrafast, modern apps with True Vanilla Performance.

Precision Reactive Engine — NatxoCC