Tiny·Engine (Core)

Features

Feature Overview

Version 1.8.0 introduces a dedicated Features section so advanced modules can be documented without displacing the core runtime guides.

Keep the core flow

Core setup stays the same: configure the runtime once, register the pieces you need, then call UI.init() and UI.observe(). Feature modules layer on top of that flow instead of replacing it.

bootstrap.ts
import { UI } from "tiny-engine-core";

UI.config({
  prefix: "app",
  debug: true,
  warnings: true,
  hydration: true,
});

UI.init();
UI.observe();

Advanced modules

Use feature pages for bigger building blocks that deserve their own usage, integration, and DX guidance. Current examples include Data Grid for richer tables and TinyRequest for request-heavy apps and admin tools.