Better Auth Skill
Better Auth is comprehensive, framework-agnostic authentication/authorization framework for TypeScript with built-in email/password, social OAuth, and powerful plugin ecosystem for advanced features.
When to Use
- Implementing auth in TypeScript/JavaScript applications
- Adding email/password or social OAuth authentication
- Setting up 2FA, passkeys, magic links, advanced auth features
- Building multi-tenant apps with organization support
- Managing sessions and user lifecycle
- Working with any framework (Next.js, Nuxt, SvelteKit, Remix, Astro, Hono, Express, etc.)
Quick Start
Installation
npm install better-auth
# or pnpm/yarn/bun add better-auth
Environment Setup
Create .env:
BETTER_AUTH_SECRET=<generated-secret-32-chars-min>
BETTER_AUTH_URL=http://localhost:3000
Basic Server Setup
Create auth.ts (root, lib/, utils/, or under src/app/server/):
import { betterAuth } from "better-auth";
export const auth = betterAuth({
database: {
// See references/database-integration.md
},
emailAndPassword: {
enabled: true,
autoSignIn: true,
},
socialProviders: {
github: {
clientId: process.env.GITHUB_CLIENT_ID!,
clientSecret: process.env.GITHUB_CLIENT_SECRET!,
},
},
});
Database Schema
npx @better-auth/cli generate # Generate schema/migrations
npx @better-auth/cli migrate # Apply migrations (Kysely only)
Mount API Handler
Next.js App Router:
// app/api/auth/[...all]/route.ts
import { auth } from "@/lib/auth";
import { toNextJsHandler } from "better-auth/next-js";
export const { POST, GET } = toNextJsHandler(auth);
Other frameworks: See references/email-password-auth.md#framework-setup
Client Setup
Create auth-client.ts:
import { createAuthClient } from "better-auth/client";
export const authClient = createAuthClient({
baseURL: process.env.NEXT_PUBLIC_BETTER_AUTH_URL || "http://localhost:3000",
});
Basic Usage
// Sign up
await authClient.signUp.email({
email: "user@example.com",
password: "secure123",
name: "John Doe",
});
// Sign in
await authClient.signIn.email({
email: "user@example.com",
password: "secure123",
});
// OAuth
await authClient.signIn.social({ provider: "github" });
// Session
const { data: session } = authClient.useSession(); // React/Vue/Svelte
const { data: session } = await authClient.getSession(); // Vanilla JS
Feature Selection Matrix
Auth Method Selection Guide
Choose Email/Password when:
- Building standard web app with traditional auth
- Need full control over user credentials
- Targeting users who prefer email-based accounts
Choose OAuth when:
- Want quick signup with minimal friction
- Users already have social accounts
- Need access to social profile data
Choose Passkeys when:
- Want passwordless experience
- Targeting modern browsers/devices
- Security is top priority
Choose Magic Link when:
- Want passwordless without WebAuthn complexity
- Targeting email-first users
- Need temporary access links
Combine Multiple Methods when:
- Want flexibility for different user preferences
- Building enterprise apps with various auth requirements
- Need progressive enhancement (start simple, add more options)
Core Architecture
Better Auth uses client-server architecture:
- Server (
better-auth): Handles auth logic, database ops, API routes
- Client (
better-auth/client): Provides hooks/methods for frontend
- Plugins: Extend both server/client functionality
Implementation Checklist
Reference Documentation
Core Authentication
Advanced Features
- Advanced Features - 2FA/MFA, passkeys, magic links, organizations, rate limiting, session management
Scripts
scripts/better_auth_init.py - Initialize Better Auth configuration with interactive setup
Resources
1---2name: better-auth-93description: Implement authentication and authorization with Better Auth - a framework-agnostic TypeScript authentication framework. Features include email/password authentication with verification, OAuth providers (Google, GitHub, Discord, etc.), two-factor authentication (TOTP, SMS), passkeys/WebAuthn support, session management, role-based access control (RBAC), rate limiting, and database adapters. Use when adding authentication to applications, implementing OAuth flows, setting up 2FA/MFA, managing user sessions, configuring authorization rules, or building secure authentication systems for web applications.4license: MIT5---67# Better Auth Skill89Better Auth is comprehensive, framework-agnostic authentication/authorization framework for TypeScript with built-in email/password, social OAuth, and powerful plugin ecosystem for advanced features.1011## When to Use1213- Implementing auth in TypeScript/JavaScript applications14- Adding email/password or social OAuth authentication15- Setting up 2FA, passkeys, magic links, advanced auth features16- Building multi-tenant apps with organization support17- Managing sessions and user lifecycle18- Working with any framework (Next.js, Nuxt, SvelteKit, Remix, Astro, Hono, Express, etc.)1920## Quick Start2122### Installation2324```bash25npm install better-auth26# or pnpm/yarn/bun add better-auth27```2829### Environment Setup3031Create `.env`:3233```env34BETTER_AUTH_SECRET=<generated-secret-32-chars-min>35BETTER_AUTH_URL=http://localhost:300036```3738### Basic Server Setup3940Create `auth.ts` (root, lib/, utils/, or under src/app/server/):4142```ts43import { betterAuth } from "better-auth";4445export const auth = betterAuth({46 database: {47 // See references/database-integration.md48 },49 emailAndPassword: {50 enabled: true,51 autoSignIn: true,52 },53 socialProviders: {54 github: {55 clientId: process.env.GITHUB_CLIENT_ID!,56 clientSecret: process.env.GITHUB_CLIENT_SECRET!,57 },58 },59});60```6162### Database Schema6364```bash65npx @better-auth/cli generate # Generate schema/migrations66npx @better-auth/cli migrate # Apply migrations (Kysely only)67```6869### Mount API Handler7071**Next.js App Router:**7273```ts74// app/api/auth/[...all]/route.ts75import { auth } from "@/lib/auth";76import { toNextJsHandler } from "better-auth/next-js";7778export const { POST, GET } = toNextJsHandler(auth);79```8081**Other frameworks:** See references/email-password-auth.md#framework-setup8283### Client Setup8485Create `auth-client.ts`:8687```ts88import { createAuthClient } from "better-auth/client";8990export const authClient = createAuthClient({91 baseURL: process.env.NEXT_PUBLIC_BETTER_AUTH_URL || "http://localhost:3000",92});93```9495### Basic Usage9697```ts98// Sign up99await authClient.signUp.email({100 email: "user@example.com",101 password: "secure123",102 name: "John Doe",103});104105// Sign in106await authClient.signIn.email({107 email: "user@example.com",108 password: "secure123",109});110111// OAuth112await authClient.signIn.social({ provider: "github" });113114// Session115const { data: session } = authClient.useSession(); // React/Vue/Svelte116const { data: session } = await authClient.getSession(); // Vanilla JS117```118119## Feature Selection Matrix120121| Feature | Plugin Required | Use Case | Reference |122| ---------------------------- | -------------------- | ---------------------- | ------------------------------------------------------------------------------------- |123| Email/Password | No (built-in) | Basic auth | [email-password-auth.md](./references/email-password-auth.md) |124| OAuth (GitHub, Google, etc.) | No (built-in) | Social login | [oauth-providers.md](./references/oauth-providers.md) |125| Email Verification | No (built-in) | Verify email addresses | [email-password-auth.md](./references/email-password-auth.md#email-verification) |126| Password Reset | No (built-in) | Forgot password flow | [email-password-auth.md](./references/email-password-auth.md#password-reset) |127| Two-Factor Auth (2FA/TOTP) | Yes (`twoFactor`) | Enhanced security | [advanced-features.md](./references/advanced-features.md#two-factor-authentication) |128| Passkeys/WebAuthn | Yes (`passkey`) | Passwordless auth | [advanced-features.md](./references/advanced-features.md#passkeys-webauthn) |129| Magic Link | Yes (`magicLink`) | Email-based login | [advanced-features.md](./references/advanced-features.md#magic-link) |130| Username Auth | Yes (`username`) | Username login | [email-password-auth.md](./references/email-password-auth.md#username-authentication) |131| Organizations/Multi-tenant | Yes (`organization`) | Team/org features | [advanced-features.md](./references/advanced-features.md#organizations) |132| Rate Limiting | No (built-in) | Prevent abuse | [advanced-features.md](./references/advanced-features.md#rate-limiting) |133| Session Management | No (built-in) | User sessions | [advanced-features.md](./references/advanced-features.md#session-management) |134135## Auth Method Selection Guide136137**Choose Email/Password when:**138139- Building standard web app with traditional auth140- Need full control over user credentials141- Targeting users who prefer email-based accounts142143**Choose OAuth when:**144145- Want quick signup with minimal friction146- Users already have social accounts147- Need access to social profile data148149**Choose Passkeys when:**150151- Want passwordless experience152- Targeting modern browsers/devices153- Security is top priority154155**Choose Magic Link when:**156157- Want passwordless without WebAuthn complexity158- Targeting email-first users159- Need temporary access links160161**Combine Multiple Methods when:**162163- Want flexibility for different user preferences164- Building enterprise apps with various auth requirements165- Need progressive enhancement (start simple, add more options)166167## Core Architecture168169Better Auth uses client-server architecture:1701711. **Server** (`better-auth`): Handles auth logic, database ops, API routes1722. **Client** (`better-auth/client`): Provides hooks/methods for frontend1733. **Plugins**: Extend both server/client functionality174175## Implementation Checklist176177- [ ] Install `better-auth` package178- [ ] Set environment variables (SECRET, URL)179- [ ] Create auth server instance with database config180- [ ] Run schema migration (`npx @better-auth/cli generate`)181- [ ] Mount API handler in framework182- [ ] Create client instance183- [ ] Implement sign-up/sign-in UI184- [ ] Add session management to components185- [ ] Set up protected routes/middleware186- [ ] Add plugins as needed (regenerate schema after)187- [ ] Test complete auth flow188- [ ] Configure email sending (verification/reset)189- [ ] Enable rate limiting for production190- [ ] Set up error handling191192## Reference Documentation193194### Core Authentication195196- [Email/Password Authentication](./references/email-password-auth.md) - Email/password setup, verification, password reset, username auth197- [OAuth Providers](./references/oauth-providers.md) - Social login setup, provider configuration, token management198- [Database Integration](./references/database-integration.md) - Database adapters, schema setup, migrations199200### Advanced Features201202- [Advanced Features](./references/advanced-features.md) - 2FA/MFA, passkeys, magic links, organizations, rate limiting, session management203204## Scripts205206- `scripts/better_auth_init.py` - Initialize Better Auth configuration with interactive setup207208## Resources209210- Docs: https://www.better-auth.com/docs211- GitHub: https://github.com/better-auth/better-auth212- Plugins: https://www.better-auth.com/docs/plugins213- Examples: https://www.better-auth.com/docs/examples