You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A wrapper for [oidc-client-js](https://github.com/IdentityModel/oidc-client-js) providing [OIDC](https://openid.net/specs/openid-connect-core-1_0.html) support for re-frame + reagent applications in cljs. Inspired by [re-frame-oidc](https://github.com/tafarij/re-frame-oidc).
6
+
A wrapper for [oidc-client-ts](https://github.com/authts/oidc-client-ts) providing [OIDC](https://openid.net/specs/openid-connect-core-1_0.html) support for re-frame + reagent applications in cljs. Inspired by [re-frame-oidc](https://github.com/tafarij/re-frame-oidc).
7
7
8
8
## Overview
9
9
10
10
Re-frame fx, event handlers and subscriptions are provided to allow interactive sign-in from an SPA without the need for a server backend.
11
11
12
+
## Installation
13
+
14
+
Add the following dependency to your deps.edn file:
15
+
16
+
```clojure
17
+
com.yetanalytics/re-oidc {:mvn/version"0.1.0"
18
+
:exclusions [io.github.cljsjs/oidc-client-ts
19
+
reagent/reagent
20
+
re-frame/re-frame]}
21
+
```
22
+
23
+
For production, you will need to add the following `cljsjs/oidc_client_ts.cljs` ClojureScript source:
0 commit comments