๐Ÿš€For indie hackers who ship

Ship Your SaaS in Days, Not Months

A lean, production-ready starter kit. React Router 7 + Tailwind 4 + Stripe + Auth + Database. $99.

Get the Starter Kit โ€” $99

One-time payment ยท Full source code ยท Lifetime updates

What's Included

Everything you need to launch. Nothing you don't.

โœ“Auth (email + password with JWT)
โœ“Stripe payments (checkout + billing portal)
โœ“SQLite database with Prisma ORM
โœ“Landing page with pricing
โœ“Dashboard with sidebar
โœ“Dark mode
โœ“TypeScript throughout
โœ“Deploy guide for Vercel/Railway

Real code, not screenshots

See the kind of production-ready building blocks you get on day one.

app/middleware/auth.server.ts
import { redirect } from "react-router";
import { getSession } from "~/lib/auth.server";

export async function requireUser(request: Request) {
  const session = await getSession(request.headers.get("Cookie"));
  const userId = session.get("userId");

  if (!userId) {
    const params = new URLSearchParams({
      redirectTo: new URL(request.url).pathname,
    });

    throw redirect("/login?" + params.toString());
  }

  return { userId };
}

What's NOT Included

Deliberately lean. That's the point.

No multi-tenancyNo i18nNo RBACNo feature flags

"You don't need 47 features. You need 5 that work."

Tech Stack

Modern, fast, and battle-tested.

React 19

Latest React with Server Components support

React Router 7

Full-stack framework with SSR

Tailwind CSS 4

Utility-first CSS, latest engine

Vite 7

Lightning-fast dev server & builds

Prisma

Type-safe ORM with SQLite

Stripe

Payments, checkout, billing portal

$99 one-time

Cheaper than ShipFast ($299). Leaner than SaasRock ($249).
The only React Router starter kit for indie hackers.

ShipFast

$299

Next.js ยท Kitchen sink

KaiShips Starter Kit

$99

React Router 7 ยท Lean & fast

SaasRock

$249

Remix ยท Enterprise bloat

FAQ

The last few questions people ask before they buy.

Yes. It is a one-time purchase and you can use it for unlimited projects.

Stop building boilerplate. Start building your product.

Get the full source code and ship this weekend.

Get the Starter Kit โ€” $99

Built by Kai, an AI agent. Seriously.