import { Steps } from '@astrojs/starlight/components' import PackageManagerTabs from '/components/tabs/PackageManagerTabs.astro' import UIFrameworkTabs from '/components/tabs/UIFrameworkTabs.astro' import ReadMore from '~/components/ReadMore.astro'

Authentication and authorization are two security processes that manage access to your website or app. Authentication verifies a visitor's identity, while authorization grants access to protected areas and resources.

Authentication allows you to customize areas of your site for logged-in individuals and provides the greatest protection for personal or private information. Authentication libraries (e.g. Auth.js, Clerk) provide utilities for multiple authentication methods such as email sign-in and OAuth providers.

:::tip There is no official authentication solution for Astro, but you can find community "auth" integrations in the integrations directory. :::

See how to add authentication with Supabase or add authentication with Firebase in our dedicated guides for these backend services.

Auth.js

Auth.js is a framework agnostic solution for authentication. A community framework adapter auth-astro is available for Astro.

Installation

Use the astro add command for your preferred package manager to add the auth-astro integration.

Manual installation

To install auth-astro manually, install the required package for your package manager:

Then, apply the integration to your astro.config.* file using the integrations property:

ts
import { defineConfig } from 'astro/config';import auth from 'auth-astro';export default defineConfig({  // ...  integrations: [auth()],});

Configuration

Create an auth.config.ts file in your project's root directory. Add any auth providers or methods you wish to support, along with any environment variables they require.

ts
import GitHub from '@auth/core/providers/github';import { defineConfig } from 'auth-astro';export default defineConfig({	providers: [		GitHub({			clientId: import.meta.env.GITHUB_CLIENT_ID,			clientSecret: import.meta.env.GITHUB_CLIENT_SECRET,		}),	],});

Create a .env file in the root of your project if it does not already exist. Add the following two environment variables. AUTH_SECRET should be a private string with a minimum of 32 characters.

sh
AUTH_TRUST_HOST=trueAUTH_SECRET=<my-auth-secret>

Usage

You can add sign-in and sign-out buttons using the auth-astro/client module in a script tag or client-side framework component.

astro
---import Layout from 'src/layouts/Base.astro';---<Layout>  <button id="login">Login</button>  <button id="logout">Logout</button>  <script>    const { signIn, signOut } = await import("auth-astro/client")    document.querySelector("#login").onclick = () => signIn("github")    document.querySelector("#logout").onclick = () => signOut()  </script></Layout>

You can fetch the user's session using the getSession method.

astro
---import Layout from 'src/layouts/Base.astro';import { getSession } from 'auth-astro/server';export const prerender = false; // Not needed in 'server' modeconst session = await getSession(Astro.request);---<Layout>  {    session ? (      <p>Welcome {session.user?.name}</p>    ) : (      <p>Not logged in</p>    )  }</Layout>

Next Steps

Better Auth

Better Auth is a framework-agnostic authentication (and authorization) framework for TypeScript. It provides a comprehensive set of features out of the box and includes a plugin ecosystem that simplifies adding advanced functionalities.

It supports Astro out of the box, and you can use it to add authentication to your astro project.

Installation

For detailed setup instructions, check out the Better Auth Installation Guide.

Configuration

Configure your database table to store user data and your preferred authentication methods as described in the Better Auth Installation Guide. Then, you'll need to mount the Better Auth handler in your Astro project.

ts
import { auth } from "../../../lib/auth"; // import your Better Auth instanceimport type { APIRoute } from "astro";export const prerender = false; // Not needed in 'server' modeexport const ALL: APIRoute = async (ctx) => {	return auth.handler(ctx.request);};

Follow the Better Auth Astro Guide to learn more.

Usage

Better Auth offers a createAuthClient helper for various frameworks, including Vanilla JS, React, Vue, Svelte, and Solid.

For example, to create a client for React, import the helper from 'better-auth/react':

export const authClient = createAuthClient();

export const { signIn, signOut } = authClient;

</Fragment> <Fragment slot="solid"> ```ts title="src/lib/auth-client.ts" import { createAuthClient } from 'better-auth/solid'; export const authClient = createAuthClient(); export const { signIn, signOut } = authClient;

export const authClient = createAuthClient();

export const { signIn, signOut } = authClient;

</Fragment> <Fragment slot="vue"> ```ts title="src/lib/auth-client.ts" import { createAuthClient } from 'better-auth/vue'; export const authClient = createAuthClient(); export const { signIn, signOut } = authClient;

Once your client is set up, you can use it to authenticate users in your Astro components or any framework-specific files. The following example adds the ability to log in or log out with your configured signIn() and signOut() functions.

astro
---import Layout from 'src/layouts/Base.astro';---<Layout>  <button id="login">Login</button>  <button id="logout">Logout</button>  <script>    const { signIn, signOut } = await import("./lib/auth-client")    document.querySelector("#login").onclick = () => signIn.social({      provider: "github",      callbackURL: "/dashboard",    })    document.querySelector("#logout").onclick = () => signOut()  </script></Layout>

You can then use the auth object to get the user's session data in your server-side code. The following example personalizes page content by displaying an authenticated user's name:

astro
---import { auth } from "../../../lib/auth"; // import your Better Auth instanceexport const prerender = false; // Not needed in 'server' mode const session = await auth.api.getSession({	headers: Astro.request.headers,});---<p>{session.user?.name}</p>

You can also use the auth object to protect your routes using middleware. The following example checks whether a user trying to access a logged-in dashboard route is authenticated, and redirects them to the home page if not.

ts
import { auth } from "../../../auth"; // import your Better Auth instanceimport { defineMiddleware } from "astro:middleware"; export const onRequest = defineMiddleware(async (context, next) => {	const isAuthed = await auth.api		.getSession({			headers: context.request.headers,		})	if (context.url.pathname === "/dashboard" && !isAuthed) {		return context.redirect("/");	}	return next();});

Next Steps

Clerk

Clerk is a complete suite of embeddable UIs, flexible APIs, and admin dashboards to authenticate and manage your users. An official Clerk SDK for Astro is available.

Installation

Install @clerk/astro using the package manager of your choice.

Configuration

Follow Clerk's own Astro Quickstart guide to set up Clerk integration and middleware in your Astro project.

Usage

Clerk provides components that allow you to control the visibility of pages based on your user's authentication state. Show logged out users a sign in button instead of the content available to users who are logged in:

astro
---import Layout from 'src/layouts/Base.astro';import { SignedIn, SignedOut, UserButton, SignInButton } from '@clerk/astro/components';export const prerender = false; // Not needed in 'server' mode---<Layout>    <SignedIn>        <UserButton />    </SignedIn>    <SignedOut>        <SignInButton />    </SignedOut></Layout>

Clerk also allows you to protect routes on the server using middleware. Specify which routes are protected, and prompt unauthenticated users to sign in:

ts
import { clerkMiddleware, createRouteMatcher } from '@clerk/astro/server';const isProtectedRoute = createRouteMatcher([  '/dashboard(.*)',  '/forum(.*)',]);export const onRequest = clerkMiddleware((auth, context) => {  if (!auth().userId && isProtectedRoute(context.request)) {    return auth().redirectToSignIn();  }});

Next Steps

Lucia

Lucia is a resource for implementing session-based authentication in a number of frameworks, including Astro.

Guides

  1. Create a basic sessions API with your chosen database.
  2. Add session cookies using endpoints and middleware.
  3. Implement GitHub OAuth using the APIs you implemented.

Examples

Community Resources