All Projects → maxmantz → Redux Oidc

maxmantz / Redux Oidc

Licence: mit
A package for managing OpenID Connect authentication in ReactJS / Redux apps

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Redux Oidc

example-oidc
OIDC (OpenID Connect) Example for http://openid.net/connect/
Stars: ✭ 221 (-44.05%)
Mutual labels:  openid-connect, oauth2-client
Oidc.example
OIDC (OpenID Connect) Example for http://openid.net/connect/
Stars: ✭ 190 (-51.9%)
Mutual labels:  openid-connect, oauth2-client
Openidconnect Rs
OpenID Connect Library for Rust
Stars: ✭ 75 (-81.01%)
Mutual labels:  openid-connect, oauth2-client
oxd
Client software to secure apps with OAuth 2.0, OpenID Connect, and UMA
Stars: ✭ 40 (-89.87%)
Mutual labels:  openid-connect, oauth2-client
Caddy Auth Portal
Authentication Plugin for Caddy v2 implementing Form-Based, Basic, Local, LDAP, OpenID Connect, OAuth 2.0 (Github, Google, Facebook, Okta, etc.), SAML Authentication
Stars: ✭ 291 (-26.33%)
Mutual labels:  openid-connect
github-traffic-stats
Manage and automatically collect Github traffic statistics for repositories
Stars: ✭ 30 (-92.41%)
Mutual labels:  openid-connect
gsh
GSH is an OpenID Connect-compatible authentication system for systems using OpenSSH servers
Stars: ✭ 21 (-94.68%)
Mutual labels:  openid-connect
konnect
Kopano Konnect implements an OpenID provider (OP) with integrated web login and consent forms.
Stars: ✭ 54 (-86.33%)
Mutual labels:  openid-connect
Play Pac4j
Security library for Play framework 2 in Java and Scala: OAuth, CAS, SAML, OpenID Connect, LDAP, JWT...
Stars: ✭ 375 (-5.06%)
Mutual labels:  openid-connect
Openid connect
OpenID Connect Server & Client Library
Stars: ✭ 331 (-16.2%)
Mutual labels:  openid-connect
Hiauth
HiAuth是一个开源的基于Oauth2协议的认证、授权系统。
Stars: ✭ 273 (-30.89%)
Mutual labels:  oauth2-client
mern-google-login
Authentication flow for React & Express.js application using Google OAuth
Stars: ✭ 39 (-90.13%)
Mutual labels:  openid-connect
Oxauth
OAuth 2.0 server and client; OpenID Connect Provider (OP) & UMA Authorization Server (AS)
Stars: ✭ 308 (-22.03%)
Mutual labels:  openid-connect
mozilla-aws-cli
A command line tool to allow users to log into AWS with their federated identity using Single Sign On and obtain ephemeral API keys.
Stars: ✭ 15 (-96.2%)
Mutual labels:  openid-connect
Openid Connect Php
Minimalist OpenID Connect client
Stars: ✭ 336 (-14.94%)
Mutual labels:  openid-connect
3scale-security-oidc-demo
Securing APIs with OpenID Connect using 3scale API Management and Red Hat Single Sign On
Stars: ✭ 25 (-93.67%)
Mutual labels:  openid-connect
Oauthswift
Swift based OAuth library for iOS
Stars: ✭ 2,949 (+646.58%)
Mutual labels:  oauth2-client
Django Oidc Provider
OpenID Connect and OAuth2 provider implementation for Djangonauts.
Stars: ✭ 320 (-18.99%)
Mutual labels:  openid-connect
Angularaspnetcoreoauth
Sample project demonstrating user authentication and identity with Angular, Asp.Net Core and IdentityServer4
Stars: ✭ 268 (-32.15%)
Mutual labels:  openid-connect
oidc-agent
oidc-agent for managing OpenID Connect tokens on the command line
Stars: ✭ 47 (-88.1%)
Mutual labels:  openid-connect

redux-oidc

Build Status

A package for managing OpenID-Connect authentication in ReactJS / Redux apps. It wraps the popular oidc-client library to redux actions and reducers.

Description

This package handles OpenID-Connect authentication in redux apps. It enables redux apps to authenticate with an external OIDC authentication provider and handles the actions of the OpenID implicit flow or authorization code flow.

It uses the oidc-client-js library to manage OpenID Connect functionality.

It contains the following parts:

  • CallbackComponent: A react component processing the signin callback from the OpenID-Connect provider,
  • SignoutCallbackComponent: A react component processing the signout callback from the OpenID-Connect provider,
  • reducers & actions: reducers and actions to handle OIDC events,
  • helpers: create helpers to manage the oidc-client-js library

Installation

npm install --save redux-oidc

Peer dependencies

This package wraps oidc-client-js to use with ReactJS / Redux apps. Install oidc-client like this:

npm install --save oidc-client

In addition there is a peer dependency for immutable.js, if you want to use it.

babel-polyfill

You need the babel-polyfill in your build configuration for this package to work.

Version 4 released

BREAKING CHANGE: immutable is no longer a dependency. If you are using the immutable reducer, please check out the docs.

Documentation

You can find the docs for version 3 here:

Note for react-native users

This library doesn't fully support react-native apps. Please use this library instead.

Version 2

Check out the wiki for further information for Version 2 (deprecated).

Sample app

There is a sample application demonstrating the use of this package here.

Tests

You have to install immutableJS for all the tests to pass: npm install immutable --no-save. Then run npm run test.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].