Skip to main content

Technical documentation

NodeTree navigation on the left, MDX technical content in the center.

api reference

API Reference

Current public web routes and stable interfaces in this documentation project.

Routes

  • / landing page.
  • /docs/:slug documentation article route.
  • /architecture architecture showcase.
  • /resources downloadable asset index.

Docs frontmatter schema

type DocSection =
  | 'getting-started'
  | 'core-concepts'
  | 'architecture'
  | 'api-reference'
  | 'contributing';

interface DocMeta {
  title: string;
  description: string;
  order: number;
  section: DocSection;
}