ui-builder is a free, open source automation project written in TypeScript and released under MIT. It has 666 GitHub stars, 96 forks and 2 open issues, and was last pushed 3 months ago. On this registry it ranks #76 of 96 tracked projects in Automation, with 5 head-to-head comparisons available.

UI Builder — Visual Editor for Your React App

UI Builder is a shadcn/ui package that adds a Figma-style editor to your own product, letting non-developers compose pages, emails, dashboards, and white-label views with the exact React components you already ship.

Layouts are saved as plain JSON for easy versioning and can be rendered instantly with dynamic data.

UI Builder Demo

View Full Documentation


UI Builder is now part of BTST — ship full-stack features faster with production-ready plugins that generate database schemas, API routes, and pages for Next.js, TanStack Start, and React Router.


Installation

Quick Start with shadcn/ui

If you already have a shadcn/ui project:

npx shadcn@latest add https://raw.githubusercontent.com/olliethedev/ui-builder/main/registry/block-registry.json

Or start a new Next.js project with UI Builder:

npx shadcn@latest init https://raw.githubusercontent.com/olliethedev/ui-builder/main/registry/block-registry.json --base-color zinc

Optional: Add All Shadcn Components

Install the full shadcn component library with 54 pre-configured components and 124 block templates:

npx shadcn@latest add https://raw.githubusercontent.com/olliethedev/ui-builder/main/registry/shadcn-components-registry.json

Optional: Add React Email Support

Install the react-email registry when you are building email templates in UI Builder:

npx shadcn@latest add https://raw.githubusercontent.com/olliethedev/ui-builder/main/registry/react-email-components-registry.json

This installs the react-email component registry plus email-specific builder utilities (emailPageRenderer, emailCodeGenerator, and DEFAULT_EMAIL_TAILWIND_CONFIG).

For Safari/iOS compatibility with @react-email/render, add this import at the top of your email route entry file:

import "web-streams-polyfill/polyfill";

Handling Peer Dependencies

If you encounter peer dependency warnings (common with React 19), create a .npmrc file:

echo "legacy-peer-deps=true" > .npmrc

Note: Use style variables for proper page theming.

Basic Usage

import z from "zod";
import UIBuilder from "@/components/ui/ui-builder";
import { Button } from "@/components/ui/button";
import { ComponentRegistry } from "@/components/ui/ui-builder/types";
import { primitiveComponentDefinitions } from "@/lib/ui-builder/registry/primitive-component-definitions";

const myComponentRegistry: ComponentRegistry = {
  ...primitiveComponentDefinitions,
  Button: {
    component: Button,
    schema: z.object({
      className: z.string().optional(),
      children: z.any().optional(),
      variant: z.enum(["default", "destructive", "outline", "secondary", "ghost", "link"]).default("default"),
    }),
    from: "@/components/ui/button",
  },
};

export function App() {
  return <UIBuilder componentRegistry={myComponentRegistry} />;
}

Tailwind Theme Panel Override

You can override or hide the default TailwindThemePanel in the Appearance tab without replacing full panel wiring:

<UIBuilder
  componentRegistry={myComponentRegistry}
  tailwindThemePanel={false} // hide panel
/>

Or provide your own custom node:

<UIBuilder
  componentRegistry={myComponentRegistry}
  tailwindThemePanel={<MyCustomThemePanel />}
/>

Documentation

For comprehensive documentation, visit uibuilder.app:

Development

# Build component registries
npm run build-all-registries

# Run tests
npm run test

# Sync with latest shadcn components
npm run sync-shadcn

Breaking Changes

v2.0.0

  • Internal structure changes. Delete old /ui-builder and /lib/ui-builder directories before updating.

v1.0.0

  • Removed _page_ layer type. Use any component type as root.
  • componentRegistry is now a prop, not a standalone file.

See the full changelog for details.

Contributing

Contributions are welcome! Please feel free to submit issues and pull requests.

License

MIT

Star History

Star History Chart

Frequently asked questions

Is ui-builder free to use?

ui-builder is open source under the MIT licence. There is no licence fee and no seat count — you can self-host it or, where the project offers one, pay a vendor for a managed version instead.

What does ui-builder do?

A React component that provides a no-code, visual way to create UIs, compatible with shadcn/ui and custom components.

What is ui-builder written in?

ui-builder is primarily written in TypeScript. Its source is publicly available at https://github.com/olliethedev/ui-builder, and it has 666 GitHub stars.