npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@etereo/auth

v0.7.3

Published

Angular2 module to manage basic authentication. It provide methods to register and authenticate the user in your backend. As it is customizable you can change the underlayer service for your backend strategy. Although the provided communication service us

Downloads

64

Readme

@etereo/auth

Angular2 module to manage basic authentication. It provide methods to register and authenticate the user in your backend. As it is customizable you can change the underlayer service for your backend strategy. Although the provided communication service uses the @etereo/http module to achieve the register, login and logout, you can provide your own implementation.

How to install

  npm install @etereo/auth --save

How to use

To add the module you have to import it in the root module.

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';

import { AuthModule } from '@etereo/auth';

@NgModule({
  declarations: [
  ],

  providers: [],

  // Modules
  imports: [
    BrowserModule,
    HttpModule.forRoot({baseUrl: 'http://yourappurlbase.com/' }), // Default used by Auth module
    AuthModule.forRoot()
  ]
})
export class AppModule {}

Directives

The module exports two structural directives related with authentication that you can use in your templates, IfAuthDirective and IfUnauthDirective.

  <div *ifUnauth class="col-sm-4"><a href="login">Login</a></div> <!-- only rendered if the user is not logged in -->

  <div *ifAuth class="col-sm-4"><a href="home">Home</a></div> <!-- only rendered if the user is logged in -->

Guards

You can use the following guards in your routes, AuthGuard and UnauthGuard to check if an user is logged in or not.

import { UnauthGuard } from '@etereo/auth';
import { AuthGuard } from '@etereo/auth';


@NgModule({
imports: [
  RouterModule.forChild([
    { path: 'login', component: SignInComponent, canActivate: [ UnauthGuard ]}, // only navigate if the user is not logged in (useful to show the login page, for example)
    { path: 'dashboard', component: Dashboard, canActivate: [ AuthGuard ] } // only navigate if the user is authenticated (logged in) 
  ])
],

Services

AuthService is the main service of the module. It provides methods to deal with the backend authentication, to know if an user is already authenticated etc.

API

  $user: Observable<User>; // An observable to subscribe to user changes (logout, login)
  register (user: User) : Observable //  Register a new user.
  login (user: User) : Observable // User login attempt
  logout () : Observable // User logout
  isAuth () : boolean // Check if the user is authenticated
  getUser () : User // Get the current user logged in

The AuthService use an AuthConnectorService as it's own implementation of IAuthConnectorService to communicate with the server. You can implement your own AuthConnectorService and provide it to communicate with your backend.

It only has to implement three methods:

  register (user: User) : Observable //  Register a new user.
  login (user: User) : Observable // User login attempt
  logout () : Observable // User logout

You can see the ease of the AuthConnectorService implementation:

import { Injectable } from '@angular/core';

import { Observable } from 'rxjs/Observable';
import { BehaviorSubject } from 'rxjs/BehaviorSubject';

import { IAuthConnectorService } from './auth-connector.interface.service';
import { HttpService } from '@etereo/http';

import { AuthEndpoints } from '../models/auth.endpoints';

@Injectable()
export class AuthConnectorService<U> implements IAuthConnectorService<U> {
  constructor (private http: HttpService, private endpoints: AuthEndpoints) {}
  
  register(user: U): Observable<U> {
    return this.http
    .post(this.endpoints.REGISTER, user);
  }

  login (user: U): Observable<U> {
    return this.http
    .post(this.endpoints.LOGIN, user);
  }

  logout (): Observable<any> {
    return this.http
    .post('logout', {});
  }
}

Module configuration

If you desire add your own implementation of the backend communication service, you have to provide the implementation to the AuthModule in the application's root module.

@NgModule({
  // Modules
  imports: [
    BrowserModule,
    AuthModule.forRoot({ authConnectorProvider: { provide: AuthConnectorService, useClass: YourImplementationOfAuthConnectorService } }),
  ]
})
export class AppModule {}

In the other hand, if you don't need a custom implementation of the auth communication service you can provide only your backend endpoints to the module. They will be used with the @etereo/http module to compose the api urls.

@NgModule({
  imports: [
        HttpModule.forRoot({baseUrl: 'http://yourappurlbase.com' }),
        AuthModule.forRoot({ endpoints: { REGISTER: 'custom/register', LOGIN: 'custom/login, LOGOUT: 'custom/logout' }}), // register endpoint: http://yourappurlbase.com/custom/register
  ]
})
export class AppModule {}

Contrib

To compile the project you only need to run npm run build.