Supported frameworks, when to use each, and what's included in your project.
| Framework | Type | DB | SSR | Auth | API Routes | Best For |
|---|---|---|---|---|---|---|
| Django | Full-stack | โ | โ | โ | โ | SaaS apps, admin panels, content sites |
| Flask | Micro | โ | โ | โ | โ | APIs, microservices, custom apps |
| FastAPI | API | โ | โ | โ | โ | REST/GraphQL APIs, ML backends |
| Next.js | Full-stack | โ | โ | โ | โ | Modern web apps, dashboards, marketing |
| React / Vue / Svelte | Frontend | โ | โ | โ | โ | SPAs, interactive UIs |
| HTML / JS | Static | โ | โ | โ | โ | Landing pages, forms, simple sites |
| Hugo | Static | โ | โ | โ | โ | Blogs, docs, content-heavy sites |
| .NET | Full-stack | โ | โ | โ | โ | Enterprise apps, C# ecosystem |
All server-side projects get a dedicated PostgreSQL database. Static sites get the Form API for data storage.
Need a database and user accounts? โ Django, Flask, FastAPI, Next.js, .NET, Go, or Rust
Need server-side rendering (SEO, fast initial load)? โ Django, Next.js, Hugo, .NET
Building an API only? โ FastAPI (best), Flask
Just a landing page or form? โ HTML/JS (simplest), Hugo (for blogs)
Want AI to build it for you? โ Pick any framework โ the wizard generates a working starter with best-practice defaults
Batteries-included web framework with ORM, admin panel, authentication, and templating. The most complete framework for building SaaS applications.
psycopg ยท Auto-migrate + admin user on deployLightweight and flexible โ you pick the components. SQLAlchemy, Flask-Migrate, and psycopg pre-configured in the starter template.
flask-sqlalchemy + flask-migrateHigh-performance async framework with automatic OpenAPI documentation, type validation, and dependency injection.
psycopg or SQLAlchemyReact framework with server-side rendering, API routes, and static generation. Prisma + Postgres pre-configured in the starter template.
Prisma + @prisma/clientComponent-based UI library. Create React App or Vite setups supported. Build interactive single-page applications.
Progressive framework โ easy to start, scales to complex SPAs. Great developer experience with the Composition API.
Compile-time framework โ no virtual DOM overhead. Ships minimal JavaScript. Extremely fast and lightweight.
No build step needed. Plain HTML, CSS, and JavaScript served directly. The simplest way to get a site up.
Blazing-fast static site generator. Markdown content, built-in themes, and instant page loads.
Enterprise-grade framework with Entity Framework Core, Identity, and MVC. EF Core + Npgsql + Postgres pre-configured with auto-migrate on startup.
EF Core + Npgsql ยท Auto-migrate on startup| Type | Database | How |
|---|---|---|
| Full-stack (Django, .NET, Next.js) | PostgreSQL | ORM pre-configured ยท Auto-migrate on deploy ยท Full SQL access from Database Console |
| API (FastAPI, Flask, Go, Rust) | PostgreSQL | Driver installed ยท DATABASE_URL env var ยท Create tables with migrations or raw SQL |
| Frontend SPA (React, Vue, Svelte) | PostgreSQL | DATABASE_URL available ยท Connect from API routes or a paired backend |
| Static (HTML/JS, Hugo) | Form API | POST form data to /api/forms/{slug}/ ยท No backend code needed ยท View submissions in Database Console |
The AI wizard generates a working project regardless of which framework you choose. You can always switch later โ the wizard can scaffold new components in any supported framework. Start with what's familiar and let the AI handle the rest.
*.preview.saasclaw.ai), Git repository, and the AI wizard for iterative development. Deploy to production with a custom domain at any time.