Fabricate generates apps using a carefully chosen, modern stack. Every library and framework is selected for performance, developer experience, and real-world production readiness.Documentation Index
Fetch the complete documentation index at: https://fabricate.build/docs/llms.txt
Use this file to discover all available pages before exploring further.
Frontend
| Technology | Version | Why |
|---|---|---|
| React | 18 | Industry standard, mature concurrent rendering, massive ecosystem |
| TypeScript | Latest | Type safety, better IDE support, fewer runtime errors |
| Vite | Latest | Extremely fast development builds, excellent HMR |
| Tailwind CSS | 4 | Utility-first, no CSS files to maintain, perfect for AI generation |
| shadcn/ui | Latest | High-quality accessible components, fully customizable |
Why This Frontend Stack?
React 18 with TypeScript gives you a type-safe, component-based frontend that scales. Tailwind CSS 4 is ideal for AI-generated code — utility classes are explicit and predictable. shadcn/ui provides beautiful, accessible components that are copied directly into your codebase (not a black-box library), so you can modify them freely.Backend
| Technology | Version | Why |
|---|---|---|
| Hono.js | Latest | Lightweight, TypeScript-first, runs on edge runtimes |
| Cloudflare Workers | Latest | Global edge deployment, instant cold starts, no servers to manage |
Why Hono on Cloudflare Workers?
Hono is a lightweight, Express-like framework built specifically for edge environments. Running on Cloudflare Workers means your API routes are distributed globally — responses come from the nearest datacenter to your user, not from a single server in one region. Zero cold starts, no infrastructure management.Database
| Technology | Why |
|---|---|
| Cloudflare D1 | SQLite-compatible, globally distributed, integrated with Cloudflare Workers |
Full Stack Architecture
Can I Change the Tech Stack?
Currently, Fabricate generates code for this specific stack. You can export your code and modify it to use different technologies, but the AI-powered build system is optimized for and tested with this stack.Can I add additional libraries?
Can I add additional libraries?
Yes. Ask Fabricate to install and use any npm package. For example: “Add the recharts library and create a line chart component showing monthly revenue.”
Can I use a different CSS framework?
Can I use a different CSS framework?
The generated code uses Tailwind CSS 4. You can ask Fabricate to add CSS modules or styled-components for specific components, but the base styling will be Tailwind.
Is React Server Components supported?
Is React Server Components supported?
The current stack is a client-side React SPA with a Hono.js backend. Server components are not used in the current architecture.