react-oidc-context
Lightweight auth library using the oidc-client library for React single page applications (SPA). Support for hooks and higher-order components (HOC).
Documentation
This library implements an auth context provider by making use of the oidc-client
library. Its configuration is
tight coupled to that library.
The User and UserManager is hold in this context, which is accessible from the React application. Additionally it intercepts
the auth redirects by looking at the query/fragment parameters and acts accordingly. You still need to setup a redirect uri,
which must point to your application, but you do not need to create that route.
Installation
Using npm
Getting Started
Configure the library by wrapping your application in AuthProvider
:
Use the useAuth
hook in your components to access authentication state (isLoading
, isAuthenticated
and user
) and
authentication methods (signinRedirect
, removeUser
and signOutRedirect
):
Use with a Class Component
Use the withAuth
higher-order component to add the auth
property to class components:
Call a protected API
As a child of AuthProvider
with a user containing an access token:
As not a child of AuthProvider
(e.g. redux slice) when using local storage (WebStorageStateStore
) for the user
containing an access token:
Contributing
We appreciate feedback and contribution to this repo!
Influences
This library is inspired by oidc-react, which lacks error handling and auth0-react, which is focued on auth0.
License
This project is licensed under the MIT license. See the LICENSE file for more info.