@4geit/ngx-auth-service

1.4.5 • Public • Published

@4geit/ngx-auth-service npm version


add an authentication service based on a swagger client

Installation

  1. A recommended way to install @4geit/ngx-auth-service is through npm package manager using the following command:
npm i @4geit/ngx-auth-service --save

Or use yarn using the following command:

yarn add @4geit/ngx-auth-service
  1. You need to import the NgxAuthService service in the module you want to use it. For instance app.module.ts as follows:
import { NgxAuthService } from '@4geit/ngx-auth-service';

And you also need to add the NgxAuthService service within the @NgModule decorator as part of the providers list.

@NgModule({
  // ...
  providers: [
    // ...
    NgxAuthService,
    // ...
  ],
  // ...
})
export class AppModule { }
  1. This service allows to override some variables. You can change a variable value as shown in the example below. First you will need to import those variables:
import { VAR1 } from '@4geit/ngx-auth-service';

And set the variable value in the providers list as below:

@NgModule({
  // ...
  providers: [
    // ...
    { provide: VAR1, useValue: 'VALUE1' },
    // ...
  ],
  // ...
})
export class AppModule { }

Here are the list of the variables this service allows you to override:

  • VAR1
  • VAR2
  • VAR3

Readme

Keywords

none

Package Sidebar

Install

npm i @4geit/ngx-auth-service

Weekly Downloads

2

Version

1.4.5

License

MIT

Last publish

Collaborators

  • geraldinestarke
  • fabianstarke
  • canercandan