JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q69918F
  • License MIT

Astro integration module for Kinde authentication

Package Exports

  • astro-kinde

Readme

Astro Kinde Integration

Bundle Size Build Status

This package provides an Astro integration for Kinde, an authentication and user management platform. It simplifies the process of adding authentication to your Astro application using Kinde's OAuth 2.0 flow.

Installation

(0.) Create a Kinde back-end web account. Set the env variables:

KINDE_MANAGEMENT_CLIENT_ID=your_management_client_id
KINDE_MANAGEMENT_CLIENT_SECRET=your_management_client_secret
KINDE_DOMAIN=your_kinde_domain
  1. Install the package:
npm install astro-kinde
  1. Add the integration to your astro.config.mjs:
import { defineConfig } from "astro/config";
import { kinde } from "kinde-astro";

export default defineConfig({
    integrations: [kinde()],
});
  1. Setup your env.d.ts
/// <reference types="astro/client" />

declare namespace App {
    interface Locals {
        isAuthenticated: boolean;
        accessToken: string | undefined;
    }
}

Configuration

Configure the integration by passing options to the kinde function in astro.config.mjs.

import dotenv from "dotenv";

dotenv.config();

kinde({
    clientId: process.env.KINDE_MANAGEMENT_CLIENT_ID,
    clientSecret: process.env.KINDE_MANAGEMENT_CLIENT_SECRET,
    domain: process.env.KINDE_DOMAIN,
    callbackUri: "http://localhost:4321/api/kinde/callback",
    signedInUri: "http://localhost:4321",
    signedOutUri: "http://localhost:4321",
});
Option Description Example Value
clientId The client ID for your Kinde application process.env.KINDE_MANAGEMENT_CLIENT_ID
clientSecret The client secret for your Kinde application process.env.KINDE_MANAGEMENT_CLIENT_SECRET
domain The domain for your Kinde application process.env.KINDE_DOMAIN
callbackUri The URI to redirect to after authentication "http://localhost:4321/api/kinde/callback"
signedInUri The URI to redirect to after signing in "http://localhost:4321"
signedOutUri The URI to redirect to after signing out "http://localhost:4321"

You can set the uris based on your NODE_ENV to handle development and production environments.

Usage

The integration automatically injects the following routes:

  • /api/kinde/login: Redirects to the Kinde login page
  • /api/kinde/register: Redirects to the Kinde registration page
  • /api/kinde/callback: Handles the OAuth callback
  • /api/kinde/signout: Handles user sign-out
  • /api/kinde/isAuthenticated: Checks if the user is authenticated
  • /api/kinde/getUser: Retrieves the authenticated user's profile

You can use these routes in your Astro pages to handle authentication.

Authenticating Astro Pages is simple:

---
const isAuthenticated = Astro.locals.isAuthenticated;
---

{isAuthenticated ? (
    <a href="/api/kinde/signout">Sign Out</a>
) : (
    <a href="/api/kinde/login">Login</a>
  <a href="/api/kinde/register">Register</a>
)}

Management SDK

Kinde provides a Management SDK that you can use to manage your users and applications. To use the Management SDK:

(0.) If using seperately - remember to store the env variables from the previous steps.

  1. Install the SDK:
npm install @kinde-oss/kinde-management-api-js
  1. Initialise the SDK in astro.config.mts:
import { init } from "@kinde/management-api-js";

// Run the Kinde initialisation
init();
  1. Use the SDK in your Astro pages:
---
import { Oauth, OpenAPI } from "@kinde/management-api-js";

const isAuthenticated = Astro.locals.isAuthenticated;
const accessToken = Astro.locals.accessToken;

if (isAuthenticated) {
  OpenAPI.TOKEN = accessToken;
  const userProfile = await Oauth.getUserProfileV2();
  console.log(userProfile);
}
---

That's it! You now have Kinde authentication set up in your Astro project and can use the Management SDK to manage your users and applications.