Documentation & Guides

Documentation for the RUNILIB ecosystem

Explore installation guides, API reference and TypeScript examples for RUNILIB packages across web and mobile.

Global settings

Scoped package

Import the published package name directly. No provider or bootstrapping is required for the standard form flow.

import { useFormBridge, field }
  from '@runilib/react-formbridge'
TypeScript

Every schema is fully typed. Types are inferred - no manual annotations needed.

const form = useFormBridge({
  email: field.email('Email').required(),
})
// form.fields.email is typed ✓
Zero config

No mandatory provider, no setup file. Import and use directly.

import { useFormBridge, field }
  from '@runilib/react-formbridge'

const { Form, fields } = useFormBridge({ ... })