1.1.1 • Published 1 year ago

@entur/auth-provider v1.1.1

Weekly downloads
-
License
EUPL
Repository
github
Last release
1 year ago

@entur/auth-provider

Authentication provider for Entur applications. Primarily aimed at easing transition between legacy keycloak and auth0 in internal and data provider applications.

NPM JavaScript Style Guide

Install

npm install --save @entur/auth-provider

Usage

import React from 'react'
import { render } from 'react-dom';

import AuthProvider, { useAuth } from '@entur/auth-provider';

const auth0Config = {}; //<-- see auth0 docs for required fields
const auth0ClaimsNamespace = ''; // <-- required for custom roles parsing

// If set to false, app will not automatically redirect to login page
const loginAutomatically = false;

const App = () => {
  const {
    isAuthenticated
  } = useAuth();

  return (
    <h1>
      {isAuthenticated ? 'Yay' : 'Oh no ...'}
    </h2>
  )
}

render(
  <AuthProvider
    auth0Config={auth0Config}
    auth0ClaimsNamespace={auth0ClaimsNamespace}
    loginAutomatically={loginAutomatically}
  >
    <App />
  <AuthProvider>
);

Release

First build:

npm run build

Then bump version:

npm version [major|minor|patch]

Then publish (use dry-run first to see what's included)

npm publish --dry-run

npm publish

Finally, push tags to GitHub

git push origin --tags

License

EUPL © entur/nrp

1.1.1

1 year ago

1.1.0

2 years ago

1.0.0

3 years ago

0.3.0

3 years ago

0.4.0

3 years ago

0.2.0

3 years ago

0.1.0

3 years ago