presentar 0.2.0

WASM-first visualization and rapid application framework
Documentation

Presentar: WASM-first visualization and rapid application framework.

Built on the Sovereign AI Stack (Trueno, Aprender, Realizar, Pacha).

Browser Usage (WASM)

import init, { App, log } from './presentar.js';

async function main() {
    await init();
    const app = new App('canvas');
    app.render_json('[{"Rect": {...}}]');
}