1.2.5 • Published 7 days ago

kinde-angular v1.2.5

Weekly downloads
-
License
MIT
Repository
github
Last release
7 days ago

KindeAngular

Kinde integration for Angular

This package is in beta, for issues and feature requests please use GitHub Issues

Quick setup

npm i kinde-angular

import module to your app module

import { KindeAngularModule } from 'kinde-angular';

Add KindeModule to your imports

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    KindeAngularModule.forRoot({
      clientId: 'client_id_here',
      authDomain: 'https://domain.kinde.com',
      redirectURL: 'http://localhost:4200/',
      logoutRedirectURL: 'http://localhost:4200/',
    })
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

Add KindeService to your component via contructor or Inject method

  constructor(private authService: KindeAngularService){
  }

Or

  const authService = inject(KindeAngularService);
1.2.5

7 days ago

1.2.4

1 month ago

1.2.3

3 months ago

1.2.2

3 months ago

1.1.1

3 months ago

1.1.2

3 months ago

1.0.0-beta

4 months ago

0.3.0

4 months ago

0.2.0

4 months ago

0.0.2

5 months ago

0.0.5

5 months ago

0.0.4

5 months ago

0.0.1

5 months ago