Socket
Socket
Sign inDemoInstall

@dlr-eoc/user-info

Package Overview
Dependencies
25
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @dlr-eoc/user-info

This is a angular module that exports some UI components to manage views for users, like login, registration or details.


Version published
Weekly downloads
34
decreased by-73.02%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

@dlr-eoc/user-info

how to use this in a ukis-angular (@dlr-eoc/core-ui) project

For a example see demo auth

add the following dependencies to the package.json
  • "@dlr-eoc/user-info"
create a auth service

This service (e.g. basic-auth.service) includes your business logic for authentication and authorization

create an AuthGuardService

This service protects your routes and is registered in the AppRoutingModule

add the following to the app.module.ts
import { UserInfoModule } from '@dlr-eoc/user-info';
import { BasicAuthService } from './auth/basic-auth.service';
import { HttpAuthInterceptor } from './auth/http-auth.interceptor';

...

 imports: [
    ...
    UserInfoModule
  ]

  providers: [
    BasicAuthService,
    {
      provide: HTTP_INTERCEPTORS,
      useFactory: (BasicAuthService) => {
        return new HttpAuthInterceptor(BasicAuthService);
      },
      deps: [BasicAuthService],
      multi: true
    }
  ]

===

This library was generated with Angular CLI version 8.2.14.

Code scaffolding

Run ng generate component component-name --project user-info to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module --project user-info.

Note: Don't forget to add --project user-info or else it will be added to the default project in your angular.json file.

Build

Run ng build user-info to build the project. The build artifacts will be stored in the dist/ directory.

Running unit tests

Run ng test user-info to execute the unit tests via Karma.

Further help

To get more help on the Angular CLI use ng help or go check out the Angular CLI README.

Keywords

FAQs

Last updated on 23 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc