JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q31224F
  • License Apache-2.0

SSO for Remix Auth

Package Exports

  • remix-auth-sso
  • remix-auth-sso/build/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (remix-auth-sso) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

SSOStrategy

The SSO strategy is used to authenticate users against a SSO account. It extends the OAuth2Strategy.

Supported runtimes

Runtime Has Support
Node.js
Cloudflare

Usage

Create an OAuth application

Follow the steps on the SSO documentation to create a new application and get a client ID and secret.

Create the strategy instance

import { SSOStrategy } from 'remix-auth-sso';

let ssoStrategy = new SSOStrategy(
  {
    clientID: 'YOUR_CLIENT_ID',
    clientSecret: 'YOUR_CLIENT_SECRET',
    callbackURL: 'https://example.com/auth/sso/callback'
  },
  async ({ accessToken, extraParams, profile }) => {
    // Get the user data from your DB or API using the tokens and profile
    return profile;
  }
);

authenticator.use(ssoStrategy);

Setup your routes

// app/routes/login.tsx
export default function Login() {
  return (
    <Form action='/auth/sso' method='post'>
      <button>Login with SSO</button>
    </Form>
  );
}
// app/routes/auth.sso.tsx
import type { ActionArgs } from '@remix-run/node';
import { redirect } from '@remix-run/node';
import { authenticator } from '~/auth.server';

export async function loader() {
  return redirect('/login');
}

export async function action({ request }: ActionArgs) {
  return authenticator.authenticate('sso', request);
}
// app/routes/auth.sso.callback.tsx
import type { LoaderArgs } from '@remix-run/node';
import { authenticator } from '~/auth.server';

export async function loader({ request }: LoaderArgs) {
  return authenticator.authenticate('sso', request, {
    successRedirect: '/dashboard',
    failureRedirect: '/login'
  });
}