Skip to main content
Version: 0.1.1

Guides

Detailed explanations of each part of the library. Each guide covers one piece in depth, with examples and the reasoning behind the API. Read these once when you start. Come back when you hit an edge case.

If you want "how do I do X" code-first answers, see Recipes. If you want the high-level mental model first, see Concepts.

  • Reactive statestate, computedState, effect. How signals work.
  • Async stateasyncState. Reactive async values.
  • Fetch statefetchState, callableFetchState. HTTP with cancellation, status, and a pluggable transport.
  • FormsformState, useForm, named validators. Schema-driven forms backed by a logic class.
  • Batch operationsbatch, startBatch / endBatch. Combining writes.
  • Dependency injectioninject, Injector, providers, scoping, onDestroy.
  • Testing — fakes, scope isolation, async flush helpers.