A production-ready modular framework with authentication, billing, notifications, and everything you need to launch your next SaaS.
Everything You Need
Stop rebuilding the same features. Start with a solid foundation.
Better-Auth with multi-tenancy, OAuth providers, and session management built-in.
Auto-generated forms from Zod schemas and data tables with sorting, filtering, pagination.
Modular layers system for billing, inbox, admin panels - add features without complexity.
Server-Sent Events powered inbox with read receipts and live updates.
Drizzle ORM with SQLite (or PostgreSQL) - type-safe queries and auto-migrations.
TypeScript, Nuxt 4, hot reload, CLI generators, and comprehensive testing setup.
Simple, Powerful APIs
Clean composables and smart components that just work. Focus on building features, not fighting frameworks.
const schema = z.object({
name: z.string().min(2),
email: z.string().email(),
})
const {
state,
errors,
submit
} = useSmartForm(schema)
// Auto-validates, handles errors,
// shows toasts, manages loading
await submit(async (data) => {
await $fetch('/api/users', {
method: 'POST',
body: data
})
})Start with a solid foundation and ship your SaaS in days, not months.