Project Awesome project awesome

Authentication > authress-angular

This package only contains a module for easy setup and registration of the Authress LoginClient.

Package 1 stars GitHub

Authress Angular

This package only contains a module for easy setup and registration of the Authress LoginClient For details about the Authress Login SDK. See https://authress.io.

Install

npm install @mikepattyn/authress-angular

Setup in AppModule

@NgModule({
  declarations: [AppComponent],
  imports: [
    // Other imports
    AuthressModule.forRoot({
      authressApiUrl: environment.authressLoginUrl,
      applicationId: environment.authressAppId,
    }),
  ],
  bootstrap: [AppComponent],
})
export class AppModule {}
Back to Angular