# SigPro – Complete API Reference SigPro is a **Real‑DOM first** reactive micro‑framework. No virtual DOM, no diffing overhead – it updates the DOM directly with surgical precision. Built‑in automatic cleanup prevents memory leaks, and the API is designed to be both tiny and powerful. ```javascript import { $, $$, watch, h, when, each, router, mount, batch } from 'sigpro' // Optional side‑effects (activate global helpers & security): import 'sigpro/tags' // → window.div, window.span, etc. import 'sigpro/xss' // → attribute sanitisation ``` In a classic IIFE script (`