惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

aimingoo的专栏
aimingoo的专栏
宝玉的分享
宝玉的分享
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Engineering at Meta
Engineering at Meta
L
LangChain Blog
Jina AI
Jina AI
博客园 - 叶小钗
B
Blog RSS Feed
Recent Announcements
Recent Announcements
H
Help Net Security
小众软件
小众软件
大猫的无限游戏
大猫的无限游戏
B
Blog
云风的 BLOG
云风的 BLOG
Blog — PlanetScale
Blog — PlanetScale
D
DataBreaches.Net
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
罗磊的独立博客

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I open-sourced my SaaS starter — here's the part I didn't
sean brydon · 2026-04-26 · via DEV Community

sean brydon

I've started the same SaaS project maybe a dozen times. Workspaces. Members. Roles. Billing webhooks. The "did this email actually verify or did Stripe fire the wrong event?" debugging session at 1am. Every time, the first two weeks of work were the same two weeks of work.

So I built a starter kit. It's called Orbit, and the CLI to scaffold it is create-orb. Last month I open-sourced the core of it. This post is about what's free, what isn't, and why I drew the line where I did — because "freemium open source" is a phrase that gets a lot of side-eye, deservedly, and I want to be straight about how this one works.

What you get for free
npm create orb@latest my-app
That command gives you, with no account and no payment:

  • A Hono API with proper DDD layering — bounded contexts, repositories, a UnitOfWork, an EventBus. Not because DDD is trendy, but because it's the structure I keep arriving at when a SaaS gets past the toy stage.
  • Multi-tenant workspaces as the root primitive, with members and a workspace-scoped PBAC system. Two-scope permissions baked in (workspace + team), with requirePermission() middleware on the server and useCan() on the client.
  • Auth via better-auth (magic links, OAuth, password + email verification).
  • A choice between TanStack Start or Next.js App Router for the frontend. The CLI deletes the one you didn't pick. They share the UI library and the WebSocket client; the per-page code is intentionally duplicated so each variant stays idiomatic to its framework instead of being smeared across somelowest-common-denominator abstraction.
  • Postgres via Prisma. Realtime over WebSockets. An in-memory rate limiter for dev. A 55-component internal UI library on Base UI + Tailwind v4 (coss.com).

And a beautiful login page + onboarding tailored to creating your workspace

That's the public starter. It's a real SaaS skeleton — you can ship something on it. Source is on GitHub, MIT, the lot.

What's behind the paywall
Here's where I want to be direct, because this is the part people usually fudge.

These features are not in the free starter:

  • Teams — nested inside workspaces, with their own roles and permissions
  • Billing — Stripe, Polar, and Dodo adapters behind a BillingProvider port
  • Audit logs — both global (admin) and tenant-scoped ledgers, materialized by a post-commit projector
  • Uploads — UploadThing adapter behind a FileStorage port
  • Transactional email — Resend adapter behind a Mailer port
  • Background jobs — Graphile Worker or QStash, swappable
  • Remote rate limiting — Upstash or Unkey adapters
  • Drizzle as an alternative to Prisma (same repository interfaces, same UoW)
  • Waitlist mode for closed beta launches
  • Many tailor skills specific to my DDD design choices.

You can find the whole feature set and docs over at wereorbit.com

I work at Cal.com as my day job - feel free to book me for anything tech related i.cal.com/sean