Authentication
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. Lucia Auth, 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
Section titled Auth.js
Auth.js is a framework agnostic solution for authentication. A community framework adapter auth-astro
is available for Astro.
Installation
Section titled Installation
Use the astro add
command for your preferred package manager to add the auth-astro
integration.
Terminal window
npx astro add auth-astro
Terminal window
pnpm astro add auth-astro
Terminal window
yarn astro add auth-astro
Manual installation
Section titled Manual installation
To install auth-astro
manually, install the required package for your package manager:
Terminal window
npm install auth-astro @auth/core@^0.18.6
Terminal window
pnpm add auth-astro @auth/core@^0.18.6
Terminal window
yarn add auth-astro @auth/core@^0.18.6
Then, apply the integration to your astro.config.*
file using the integrations
property:
astro.config.mjs
import { defineConfig } from 'astro/config';import auth from 'auth-astro';
export default defineConfig({ // ... integrations: [auth()],});
Configuration
Section titled Configuration
Create an auth.config.mjs
file in your project’s root directory. Add any auth providers or methods you wish to support, along with any environment variables they require.
auth.config.mjs
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.
.env
AUTH_TRUST_HOST=trueAUTH_SECRET=<my-auth-secret>
Usage
Section titled 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.
src/pages/index.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.
src/pages/index.astro
---import Layout from 'src/layouts/Base.astro';import { getSession } from 'auth-astro/server';
const session = await getSession(Astro.request);---<Layout> { session ? ( <p>Welcome {session.user?.name}</p> ) : ( <p>Not logged in</p> ) }</Layout>
Next Steps
Better Auth
Section titled 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
Terminal window
npm install better-auth
Terminal window
pnpm add better-auth
Terminal window
yarn add better-auth
For detailed setup instructions, check out the Better Auth Installation Guide.
Configuration
Section titled Configuration Configure your database table to store user data and your preferred authentication methods as described in the the Better Auth Installation Guide. Then, you’ll need to mount the Better Auth handler in your Astro project.
page/api/auth/[…all].ts
import { auth } from "../../../lib/auth"; // import your Better Auth instanceimport type { APIRoute } from "astro";
export const ALL: APIRoute = async (ctx) => { return auth.handler(ctx.request);};
Follow the Better Auth Astro Guide to learn more.
Usage
Section titled 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'
:
src/lib/auth-client.ts
import { createAuthClient } from 'better-auth/react';
export const authClient = createAuthClient();
export const { signIn, signOut } = authClient;
src/lib/auth-client.ts
import { createAuthClient } from 'better-auth/solid';
export const authClient = createAuthClient();
export const { signIn, signOut } = authClient;
src/lib/auth-client.ts
import { createAuthClient } from 'better-auth/svelte';
export const authClient = createAuthClient();
export const { signIn, signOut } = authClient;
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.
src/pages/index.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:
src/pages/index.astro
---import { auth } from "../../../lib/auth"; // import your Better Auth instance
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 dashbord route is authenticated, and redirects them to the home page if not.
src/middleware.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
- Better Auth Astro Guide
- Better Auth Astro Example
- Better Auth Documentation
- Better Auth GitHub Repository
Clerk
Section titled 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
Section titled Installation
Install @clerk/astro
using the package manager of your choice.
Terminal window
npm install @clerk/astro
Terminal window
pnpm add @clerk/astro
Terminal window
yarn add @clerk/astro
Configuration
Section titled Configuration Follow Clerk’s own Astro Quickstart guide to set up Clerk integration and middleware in your Astro project.
Usage
Section titled 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:
src/pages/index.astro
---import Layout from 'src/layouts/Base.astro';import { SignedIn, SignedOut, UserButton, SignInButton } from '@clerk/astro/components';---
<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:
src/middleware.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
- Read the official
@clerk/astro
documentation - Start from a template with the Clerk + Astro Quickstart project
Lucia
Section titled Lucia Lucia is a resource for implementing session-based authentication in a number of frameworks, including Astro.
Guides
- Create a basic sessions API with your chosen database.
- Add session cookies using endpoints and middleware.
- Implement GitHub OAuth using the APIs you implemented.
Examples
- GitHub OAuth example in Astro
- Google OAuth example in Astro
- Email and password example with 2FA in Astro
- Email and password example with 2FA and WebAuthn in Astro
Community Resources
Section titled Community Resources
Learn