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

@calle/co-auther

v4.1.0

Published

Angular routing helper

Downloads

15

Readme

co-auther

Authentication related routing logics for an app like this:

  • You are using JWT authentication
  • You have one route for authentication with username and password field
  • You need to load some data before actually being logged in properly (user roles / updates / news)

This module helps managing the routing based on if the authentication token is available, if the user data has been loaded, and if any of these requests fail. The authentication token is stored in a configurable localStorage variable.

Running example

  • npm install
  • npm run build
  • npm start
  • open browser and navigate to page

Using module

There are 3 base routes of you application

  • Authenticate: login screen
  • Initialize: loading screen for first request (optional)
  • Logged in: all pages that require authentication are children of this route

You have an "API service" with 3 methods (called login/logout/initialRequest) that return promises

  • login: should resolve with authentication token string
  • logout: makes logout request, nothing else
  • initialRequest: the initial request for the app

Example of using module

  • See example code for a complete example of how to use this module.
  • The steps of integration are roughly:
  1. Have an apiService with the three functions login, logout, and makeInitialRequest, which all return a promise. The function makeInitialRequest handles routing to authenticate route or logged-in route based on if initial request succeeds or not.
  2. Implement co-auther.provider.ts which registers apiService, the three routes, and initializes coAuther itself.
  3. Provide CoAuther with your custom coAutherProvider in your main.ts file.
  4. Implement a custom co-auther.guard.ts that makes use of coAuther to decide which routes are accepted based on the current state of authentication and initial request(s). CoAutherGuard handles routing to authenticate route if you're not currently authenticated.

NOTE: Error handling in apiService

When writing the error handling in the apiService you will want to use the .catch() of the promises. The problem is that once you've caught a rejected promise, it will bubble up as a resolved promise, so the parent will get a .then(). You can fix it by creating a new promise in your apiService and "rethrow" the error. In the file "example-common/api-service.ts" there is an example of this for the "initialRequest" function.

let apiService = {
  makeInitialRequest () {
    return new Promise((resolve, reject) => {
      return myRequest
        .then((data) => {
          this.router.navigate(['logged-in'])
          resolve(data)
        })
        .catch((err) => {
          localStorage.remove('authData')
          this.router.navigate(['authenticate'])
          reject(err)
        })
    })
  }
}