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: ck-better-auth3description: Add authentication with Better Auth (TypeScript). Use for email/password, OAuth providers (Google, GitHub), 2FA/MFA, passkeys/WebAuthn, sessions, RBAC, rate limiting.4license: MIT5---6
7# Better Auth Skill
8
9Better Auth is comprehensive, framework-agnostic authentication/authorization framework for TypeScript with built-in email/password, social OAuth, and powerful plugin ecosystem for advanced features.
10
11## When to Use
12
13- Implementing auth in TypeScript/JavaScript applications
14- Adding email/password or social OAuth authentication
15- Setting up 2FA, passkeys, magic links, advanced auth features
16- Building multi-tenant apps with organization support
17- Managing sessions and user lifecycle
18- Working with any framework (Next.js, Nuxt, SvelteKit, Remix, Astro, Hono, Express, etc.)
19
20## Quick Start
21
22### Installation
23
24```bash
25npm install better-auth
26# or pnpm/yarn/bun add better-auth
27```
28
29### Environment Setup
30
31Create `.env`:
32```env
33BETTER_AUTH_SECRET=<generated-secret-32-chars-min>
34BETTER_AUTH_URL=http://localhost:3000
35```
36
37### Basic Server Setup
38
39Create `auth.ts` (root, lib/, utils/, or under src/app/server/):
40
41```ts
42import { betterAuth } from "better-auth";
43
44export const auth = betterAuth({
45 database: {
46 // See references/database-integration.md
47 },
48 emailAndPassword: {
49 enabled: true,
50 autoSignIn: true
51 },
52 socialProviders: {
53 github: {
54 clientId: process.env.GITHUB_CLIENT_ID!,
55 clientSecret: process.env.GITHUB_CLIENT_SECRET!,
56 }
57 }
58});
59```
60
61### Database Schema
62
63```bash
64npx @better-auth/cli generate # Generate schema/migrations
65npx @better-auth/cli migrate # Apply migrations (Kysely only)
66```
67
68### Mount API Handler
69
70**Next.js App Router:**
71```ts
72// app/api/auth/[...all]/route.ts
73import { auth } from "@/lib/auth";
74import { toNextJsHandler } from "better-auth/next-js";
75
76export const { POST, GET } = toNextJsHandler(auth);
77```
78
79**Other frameworks:** See references/email-password-auth.md#framework-setup
80
81### Client Setup
82
83Create `auth-client.ts`:
84
85```ts
86import { createAuthClient } from "better-auth/client";
87
88export const authClient = createAuthClient({
89 baseURL: process.env.NEXT_PUBLIC_BETTER_AUTH_URL || "http://localhost:3000"
90});
91```
92
93### Basic Usage
94
95```ts
96// Sign up
97await authClient.signUp.email({
98 email: "user@example.com",
99 password: "secure123",
100 name: "John Doe"
101});
102
103// Sign in
104await authClient.signIn.email({
105 email: "user@example.com",
106 password: "secure123"
107});
108
109// OAuth
110await authClient.signIn.social({ provider: "github" });
111
112// Session
113const { data: session } = authClient.useSession(); // React/Vue/Svelte
114const { data: session } = await authClient.getSession(); // Vanilla JS
115```
116
117## Feature Selection Matrix
118
119| Feature | Plugin Required | Use Case | Reference |
120|---------|----------------|----------|-----------|
121| Email/Password | No (built-in) | Basic auth | [email-password-auth.md](./references/email-password-auth.md) |
122| OAuth (GitHub, Google, etc.) | No (built-in) | Social login | [oauth-providers.md](./references/oauth-providers.md) |
123| Email Verification | No (built-in) | Verify email addresses | [email-password-auth.md](./references/email-password-auth.md#email-verification) |
124| Password Reset | No (built-in) | Forgot password flow | [email-password-auth.md](./references/email-password-auth.md#password-reset) |
125| Two-Factor Auth (2FA/TOTP) | Yes (`twoFactor`) | Enhanced security | [advanced-features.md](./references/advanced-features.md#two-factor-authentication) |
126| Passkeys/WebAuthn | Yes (`passkey`) | Passwordless auth | [advanced-features.md](./references/advanced-features.md#passkeys-webauthn) |
127| Magic Link | Yes (`magicLink`) | Email-based login | [advanced-features.md](./references/advanced-features.md#magic-link) |
128| Username Auth | Yes (`username`) | Username login | [email-password-auth.md](./references/email-password-auth.md#username-authentication) |
129| Organizations/Multi-tenant | Yes (`organization`) | Team/org features | [advanced-features.md](./references/advanced-features.md#organizations) |
130| Rate Limiting | No (built-in) | Prevent abuse | [advanced-features.md](./references/advanced-features.md#rate-limiting) |
131| Session Management | No (built-in) | User sessions | [advanced-features.md](./references/advanced-features.md#session-management) |
132
133## Auth Method Selection Guide
134
135**Choose Email/Password when:**
136- Building standard web app with traditional auth
137- Need full control over user credentials
138- Targeting users who prefer email-based accounts
139
140**Choose OAuth when:**
141- Want quick signup with minimal friction
142- Users already have social accounts
143- Need access to social profile data
144
145**Choose Passkeys when:**
146- Want passwordless experience
147- Targeting modern browsers/devices
148- Security is top priority
149
150**Choose Magic Link when:**
151- Want passwordless without WebAuthn complexity
152- Targeting email-first users
153- Need temporary access links
154
155**Combine Multiple Methods when:**
156- Want flexibility for different user preferences
157- Building enterprise apps with various auth requirements
158- Need progressive enhancement (start simple, add more options)
159
160## Core Architecture
161
162Better Auth uses client-server architecture:
1631. **Server** (`better-auth`): Handles auth logic, database ops, API routes
1642. **Client** (`better-auth/client`): Provides hooks/methods for frontend
1653. **Plugins**: Extend both server/client functionality
166
167## Implementation Checklist
168
169- [ ] Install `better-auth` package
170- [ ] Set environment variables (SECRET, URL)
171- [ ] Create auth server instance with database config
172- [ ] Run schema migration (`npx @better-auth/cli generate`)
173- [ ] Mount API handler in framework
174- [ ] Create client instance
175- [ ] Implement sign-up/sign-in UI
176- [ ] Add session management to components
177- [ ] Set up protected routes/middleware
178- [ ] Add plugins as needed (regenerate schema after)
179- [ ] Test complete auth flow
180- [ ] Configure email sending (verification/reset)
181- [ ] Enable rate limiting for production
182- [ ] Set up error handling
183
184## Reference Documentation
185
186### Core Authentication
187- [Email/Password Authentication](./references/email-password-auth.md) - Email/password setup, verification, password reset, username auth
188- [OAuth Providers](./references/oauth-providers.md) - Social login setup, provider configuration, token management
189- [Database Integration](./references/database-integration.md) - Database adapters, schema setup, migrations
190
191### Advanced Features
192- [Advanced Features](./references/advanced-features.md) - 2FA/MFA, passkeys, magic links, organizations, rate limiting, session management
193
194## Scripts
195
196- `scripts/better_auth_init.py` - Initialize Better Auth configuration with interactive setup
197
198## Resources
199
200- Docs: https://www.better-auth.com/docs
201- GitHub: https://github.com/better-auth/better-auth
202- Plugins: https://www.better-auth.com/docs/plugins
203- Examples: https://www.better-auth.com/docs/examples