--- title: Installtion description: Learn how to configure Better Auth in your project. --- ### Install the Package Let's start by adding Better Auth to your project: ```package-install better-auth ``` If you're using a separate client and server setup, make sure to install Better Auth in both parts of your project. (currnelty better auth only supports web platforms more clients will be added soon) ### Set Environment Variables Create a `.env` file in the root of your project and add the following environment variables: 1. **Secret Key** Random value used by the library for encryption and generating hashes. **You can generate one using the button below** or you can use something like openssl. ```txt title=".env" BETTER_AUTH_SECRET= ``` 2. **Set Base URL (optional)** ```txt title=".env" BETTER_AUTH_URL=http://localhost:3000 #Base URL of your app ``` ### Create A Better Auth Instance Create a file named `auth.ts` in one of these locations: - Project root - `lib/` folder - `utils/` folder You can also nest any of these folders under `src/` folder. (e.g. `src/lib/auth.ts`) And in this file, import Better Auth and create your instance. Make sure to export the auth instance with the variable name `auth` or as a `default` export. ```ts title="auth.ts" import { betterAuth } from "better-auth" export const auth = betterAuth({ //... }) ``` ### Configure Database Better Auth requires a database to store user data. By default, it uses [Kysely](https://kysely.dev/) for database connections and queries, with support for `postgresql`, `mysql`, and `sqlite` out of the box. ```ts title="auth.ts" import { betterAuth } from "better-auth" export const auth = betterAuth({ database: { provider: "sqlite", // or "mysql", "postgresql" url: "./db.sqlite", // path to your database or connection string } }) ``` You can also use any dialect supported by Kysely in the database configuration. **Example with LibsqlDialect:** ```ts title="auth.ts" import { betterAuth } from "better-auth"; import { LibsqlDialect } from "@libsql/kysely-libsql"; export const auth = betterAuth({ database: new LibsqlDialect({ url: process.env.TURSO_DATABASE_URL || "", authToken: process.env.TURSO_AUTH_TOKEN || "", }), }); ``` **Adapters** If your database isn’t supported by Kysely, you can use an adapter to connect. Simply import the adapter and pass it into the `database` option. ```ts title="auth.ts" import { betterAuth } from "better-auth"; import { prismaAdapter } from "better-auth/adapters"; import { PrismaClient } from "@prisma/client"; const prisma = new PrismaClient(); export const auth = betterAuth({ database: prismaAdapter(prisma, { provider: "sqlite", // or "mysql", "postgresql", ...etc }), }); ``` ```ts title="auth.ts" import { betterAuth } from "better-auth"; import { drizzleAdapter } from "better-auth/adapters"; import { db } from "@/db"; // your drizzle instance export const auth = betterAuth({ database: drizzleAdapter(db, { provider: "pg", // or "mysql", "sqlite" }) }); ``` ```ts title="auth.ts" import { betterAuth } from "better-auth"; import { monogdbAdapter } from "better-auth/adapters"; import { client } from "@/db"; // your mongodb client export const auth = betterAuth({ database: monogdbAdapter(client) }); ``` ### Create Database Tables Better Auth includes a CLI tool to help manage your database tables. You can either migrate tables directly or generate an ORM schema or SQL migration file. **Migrate**: Creates the necessary tables in your database. ```bash title="Terminal" npx better-auth migrate ``` **Generate**: Generates the required ORM schema (e.g., Prisma, Drizzle) or an SQL migration file. ```bash title="Terminal" npx better-auth generate ``` see the [CLI documentation](/docs/concepts/cli) for more information. If you instead want to create the schema manually, you can find the core schema required in the [database section](/docs/concepts/database#core-schema). ### Authentication Methods Configure the authentication methods you want to use. Better auth comes with built-in support for email/password, and social sign-on providers. ```ts title="auth.ts" import { betterAuth } from "better-auth" import { github } from "better-auth/social-providers" export const auth = betterAuth({ database: { provider: "sqlite", url: "./db.sqlite", }, emailAndPassword: { // [!code highlight] enabled: true // [!code highlight] },// [!code highlight] socialProviders: { // [!code highlight] github: { // [!code highlight] clientId: process.env.GITHUB_CLIENT_ID, // [!code highlight] clientSecret: process.env.GITHUB_CLIENT_SECRET, // [!code highlight] } // [!code highlight] }, // [!code highlight] }); ``` You can use even more authentication methods like passkey, username, magic link and more through plugins. ### Mount Handler To handle api requests, you need to set up a route handler on your server. Create a new file or route in your framework's designated catch-all route handler. This route should handle requests for the path `/api/auth/*` (unless you've configured a different base path). Better auth supports any backend framework with standard Request and Response objects and offers helper functions for popular frameworks. ```ts title="/app/api/auth/[...all]/route.ts" import { auth } from "@/lib/auth"; // path to your auth file import { toNextJsHandler } from "better-auth/next-js"; export const { POST, GET } = toNextJsHandler(auth); ``` ```ts title="/app/routes/api.auth.$.ts" import { auth } from "@/lib/auth"; // path to your auth file export async function loader({ request }) { return auth.handler(request); } ``` ```ts title="/server/api/auth/[...all].ts" import { auth } from "~/utils/auth"; // path to your auth file export default defineEventHandler((event) => { return auth.handler(toWebRequest(event)); }); ``` ```ts title="hooks.server.ts" import { auth } from "$lib/auth"; // path to your auth file import { svelteKitHandler } from "better-auth/svelte-kit"; export async function handle({ event, resolve }) { return svelteKitHandler({ event, resolve, auth }); } ``` ```ts title="/routes/api/auth/*all.ts" import { auth } from "~/lib/auth"; // path to your auth file import { toSolidStartHandler } from "better-auth/solid-start"; export const { GET, POST } = toSolidStartHandler(auth); ``` ```ts title="src/index.ts" import { Hono } from "hono"; import { auth } from "./auth"; // path to your auth file import { serve } from "@hono/node-server"; import { cors } from "hono/cors"; const app = new Hono(); app.on(["POST", "GET"], "/api/auth/**", (c) => { return auth.handler(c.req.raw); }); serve(app); ``` ```ts title="server.ts" import express from "express"; import { toNodeHandler } from "better-auth/node"; import { auth } from "./auth"; const app = express(); const port = 8000; app.all("/api/auth/*", toNodeHandler(auth)); app.listen(port, () => { console.log(`Better Auth app listening on port ${port}`); }); ``` This also works for any other node server framework like express, fastify, hapi, etc. ```ts title="/pages/api/auth/[...all].ts" import type { APIRoute } from "astro"; import { auth } from "@/auth"; // path to your auth file export const GET: APIRoute = async (ctx) => { return auth.handler(ctx.request); }; export const POST: APIRoute = async (ctx) => { return auth.handler(ctx.request); }; ``` ### Create Client Instance The client-side library helps you interact with the auth server. Better Auth comes with a client for all the popular web frameworks inlcuding for vanilla javascript. 1. Import `createAuthClient` from the package for your framework (e.g., "better-auth/react" for React). 2. Call the function to create your client. 3. Pass the base url of your auth server. (If the auth server is running on the same domain as your client, you can skip this step.) If you're using a differnt base path other than `/api/auth` make sure to pass the whole url inlcuding the path. (e.g. `http://localhost:3000/custom-path/auth`) ```ts title="lib/auth-client.ts" import { createAuthClient } from "better-auth/client" export const authClient = createAuthClient({ baseURL: "http://localhost:3000" // the base url of your auth server // [!code highlight] }) ``` ```ts title="lib/auth-client.ts" import { createAuthClient } from "better-auth/react" export const client = createAuthClient({ baseURL: "http://localhost:3000" // the base url of your auth server // [!code highlight] }) ``` ```ts title="lib/auth-client.ts" import { createAuthClient } from "better-auth/vue" export const client = createAuthClient({ baseURL: "http://localhost:3000" // the base url of your auth server // [!code highlight] }) ``` ```ts title="lib/auth-client.ts" import { createAuthClient } from "better-auth/svelte" export const client = createAuthClient({ baseURL: "http://localhost:3000" // the base url of your auth server // [!code highlight] }) ``` ```ts title="lib/auth-client.ts" import { createAuthClient } from "better-auth/solid" export const client = createAuthClient({ baseURL: "http://localhost:3000" // the base url of your auth server // [!code highlight] }) ``` Tip: You can also export specific methods if you prefer: ```ts export const { signIn, signUp, useSession } = createAuthClient() ``` ### 🎉 That's it! That's it! You're now ready to use better-auth in your application. Continue to [basic usage](/docs/basic-usage) to learn how to use the auth instance to sign in users.