Free Forever · MIT Licensed

LaunchKits Connect

Free backend infrastructure. Stripe Connect, webhooks, API keys, cron, file uploads, audit log.

API-only Next.js project. No UI. Mount the routes, set env vars, ship. Replaces 6+ SaaS subscriptions and ~2 weeks of integration work.

What's Inside

Stripe ConnectPOST /api/webhooks/stripe

Merchant onboarding, payment processing, split payouts, refunds

Webhook EnginePOST /api/webhooks/[provider]

Generic receiver, signature verification, retries, dead letters

API KeysPOST /api/keys

Generate, validate, revoke, rate limit, usage tracking

EmailPOST /api/email/send

Resend integration, template engine, batch sending, retries

Cron RunnerGET /api/cron/[job]

Vercel-compatible, logging, retry, alerts

Audit LogGET /api/audit

Every API call logged, queryable, CSV export

Get Started

git clone https://github.com/gyapaganda-a11y/launchkits-connect.git
cd launchkits-connect
npm install
cp .env.example .env.local   # add Stripe, Supabase, Resend keys
npm run dev