Module runtime

Module runtime 

Source
Expand description

Component runtime - manages lifecycle, state, and re-rendering

Design Philosophy:

  • Components are just data + render function
  • State changes trigger automatic re-renders
  • Runtime handles all the complexity

Architecture:

Component State → Signal<T> → Update → Notify Runtime → Re-render → Patch DOM

Structs§

ComponentRuntime
Component runtime manages the lifecycle of a mounted component