@axa-fr/react-oidc 6.14.6 → 6.14.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# @axa-fr/react-oidc
|
|
2
2
|
|
|
3
|
+
[](https://github.com/AxaGuilDEv/react-oidc/actions/workflows/npm-publish.yml)
|
|
4
|
+
[](https://sonarcloud.io/dashboard?id=AxaGuilDEv_react-oidc) [](https://sonarcloud.io/component_measures?id=AxaGuilDEv_react-oidc&metric=reliability_rating) [](https://sonarcloud.io/component_measures?id=AxaGuilDEv_react-oidc&metric=security_rating) [](https://sonarcloud.io/component_measures?id=AxaGuilDEv_react-oidc&metric=Coverage) [](https://twitter.com/intent/follow?screen_name=GuildDEvOpen)
|
|
5
|
+
|
|
3
6
|
Try the demo at https://black-rock-0dc6b0d03.1.azurestaticapps.net/
|
|
4
7
|
|
|
5
8
|

|
|
@@ -18,7 +21,7 @@ A set of react components to make OIDC (OpenID Connect) client easy. It aim to s
|
|
|
18
21
|
## About
|
|
19
22
|
|
|
20
23
|
Easy set up of OIDC for react.
|
|
21
|
-
It
|
|
24
|
+
It is a real alternative to existing oidc-client libraries.
|
|
22
25
|
|
|
23
26
|
- **Secure** :
|
|
24
27
|
- With the use of Service Worker, your tokens (refresh_token and access_token) are not accessible to the JavaScript client code (big protection against XSRF attacks)
|
|
@@ -535,14 +538,13 @@ render(<App />, document.getElementById("root"));
|
|
|
535
538
|
|
|
536
539
|
## How It Works
|
|
537
540
|
|
|
538
|
-
These components encapsulate the use of
|
|
541
|
+
These components encapsulate the use of "@axa-fr/vanilla-oidc" in order to hide workflow complexity.
|
|
539
542
|
Internally, native History API is used to be router library agnostic.
|
|
540
|
-
It use AppAuthJS behind the scene because it very lightweight and created by OpenID certification team. `oidc-client` used in V3 was heavy and no longer maintained.
|
|
541
543
|
|
|
542
544
|
More information about OIDC
|
|
543
545
|
|
|
544
|
-
- [French](https://medium.com/just-tech-it-now/augmentez-la-s%C3%A9curit%C3%A9-et-la-simplicit%C3%A9-de-votre-syst%C3%A8me-dinformation-avec-oauth-2-0-cf0732d71284)
|
|
545
|
-
- [English](https://medium.com/just-tech-it-now/increase-the-security-and-simplicity-of-your-information-system-with-openid-connect-fa8c26b99d6d)
|
|
546
|
+
- [French : Augmentez la sécurité et la simplicité de votre Système d’Information OpenID Connect](https://medium.com/just-tech-it-now/augmentez-la-s%C3%A9curit%C3%A9-et-la-simplicit%C3%A9-de-votre-syst%C3%A8me-dinformation-avec-oauth-2-0-cf0732d71284)
|
|
547
|
+
- [English : Increase the security and simplicity of your information system with openid connect](https://medium.com/just-tech-it-now/increase-the-security-and-simplicity-of-your-information-system-with-openid-connect-fa8c26b99d6d)
|
|
546
548
|
|
|
547
549
|
## NextJS
|
|
548
550
|
|