Interactive Demo
This page runs brij.js with a built-in mock backend - no server needed. Pick a form, choose a display mode, and click to open it.
Choose a form
Display mode
// result
How this demo works
This page uses a custom fetch passed
to Brij.init() that intercepts
requests and returns mock schema/submit responses - no network calls, no backend.
import { Brij } from 'brij'
Brij.init({
host: 'https://demo.brij.local',
apiKey: 'demo',
fetch: createMockFetch(DEMO_SCHEMAS)
})