Welcome to Object UI! This guide will help you understand what Object UI is, why it exists, and how it can help you build better interfaces faster.
Object UI is a schema-driven UI system that transforms JSON descriptions into beautiful, performant React interfaces. Instead of writing component code, you write JSON that describes what you want, and Object UI handles the rendering, styling, and behavior.
// You write this
{
"type": "form",
"title": "Sign Up",
"body": [
{ "type": "input", "name": "email", "label": "Email" },
{ "type": "input-password", "name": "password", "label": "Password" }
]
}
// Object UI renders a complete, functional formStop writing repetitive UI code. A complete CRUD interface that would take days to code can be created in minutes with Object UI.
Traditional React:
// 200+ lines of code for forms, tables, validation, etc.Object UI:
// 20 lines of JSON
{
"type": "crud",
"api": "/api/users",
"columns": [...]
}Object UI is built on modern technologies with performance in mind:
- 3x faster page loads than traditional low-code platforms
- 6x smaller bundle sizes (< 50KB vs 300KB+)
- Automatic code splitting and lazy loading
- Zero runtime CSS overhead with Tailwind
If you know React and JSON, you already know most of Object UI:
- Uses standard React patterns (no custom lifecycle)
- Full TypeScript support with autocomplete
- Works with your existing tools and workflows
- Progressive adoption - use as much or as little as you need
Unlike other low-code platforms, you're never locked in:
- Extend or customize any component
- Export to standard React code anytime
- Mix Object UI with your existing React code
- Override styles with Tailwind classes
Object UI follows a simple three-step process:
Write JSON that describes your UI:
{
"type": "page",
"title": "Dashboard",
"body": {
"type": "grid",
"columns": 3,
"items": [
{ "type": "card", "title": "Users", "value": "${stats.users}" },
{ "type": "card", "title": "Revenue", "value": "${stats.revenue}" }
]
}
}Pass your schema to the renderer:
import { SchemaRenderer } from '@object-ui/react'
function App() {
return <SchemaRenderer schema={mySchema} data={myData} />
}Object UI automatically:
- Renders the components
- Applies professional styling
- Handles validation and state
- Manages accessibility
- Optimizes performance
Object UI is built as a modular ecosystem:
@object-ui/core → Core logic, types, and validation (Zero React)
@object-ui/react → React bindings and SchemaRenderer
@object-ui/components → UI components (Tailwind + Shadcn)
@object-ui/designer → Visual schema editor
This modular design means:
- Use only what you need
- Smaller bundle sizes (tree-shakable)
- Framework-agnostic core (Vue/Svelte adapters possible)
- Independent versioning per package
Object UI is perfect for:
- Admin Panels: Complete CRUD interfaces in minutes
- Dashboards: Data visualization and analytics
- Forms: Complex multi-step forms with validation
- CMS: Content management systems
- Internal Tools: Business applications
- Prototypes: Rapid UI prototyping
Ready to get started?
- Quick Start - Build your first Object UI app
- Installation - Setup instructions
- Schema Rendering - Learn the core concepts
- 📖 Documentation - You're reading it!
- ⭐ GitHub - Star us and report issues
- 📧 Email - Get in touch
Let's build something amazing! 🚀