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

axios-token-controller

v1.1.3

Published

This package helps you to manage access token and refresh token efficiently using mutex.

Downloads

31

Readme

axios-token-controller

Having trouble managing refresh token and access token? This simple package makes your token management very efficient. This package injects latest access token to every http calls. We use mutex to handle the calling of refresh token function. There's no problem how many refresh token calls get initiated, mutex will only allow the first call and passes the tokens to other calls. This way you won't have any conflict with refreshing token anymore. Thus you will overcome any unexpected behavior refreshing token such as suddenly logout.

Features

  • Injects latest access token to every http calls
  • Automatically refreshes token when the access token is expired.
  • Refreshes token when any http request return 401 status code.
  • It calls refresh token function only one time when you get multiple 401 response and calls them again with the new access token
  • Provides various events and functions to meet your needs
  • It doesn't use any storage api such as localStorage or cookies. It uses variable to store your tokens safely.
  • It has 0 dependencies
  • Fully configurable

Installing

Package manager

Using npm:

$ npm install axios-token-controller

Using yarn:

$ yarn add axios-token-controller

Step 1

First create an instance of axios and pass it to tokenController with your other desired configuration as shown below.

import axios from 'axios';
import tokenController, {getTokens} from "axios-token-controller";

// Define your refresh token function which returns at least refresh token and access token as shown below
// Note: you can return any other data. You will get all these returned data by listening tokenUpdated event
const refreshToken = async () => {
  const rToken = getTokens().refreshToken;
  // you should use getTokens function to get the refresh token or access token. And use your desired token to make the refresh token http request.

  const response = await fetch(....)
  ....
  
  return {
    accessToken: ACCESS_TOKEN, // the access token you are getting in the response data
    refreshToken: REFRESH_TOKEN, // the refresh token you are getting in the response data
  };
};
 ...
// Define an Axios instance with your desired configuration. I am not configuring anything with the instance to make it simple
 ...

const instance = axios.create();

// pass the instance above to the tokenController alongside other configurations
...

export const authAxios = tokenController({
  axiosInstance: instance, // required
  refreshToken: refreshToken, // required | pass your above refreshToken function you just defined
  isBearerToken: true, // optional | boolean | default: true
  requestTokenHeader: "Authorization" // optional | string | default: Authorization
});

// if you are using typescript, you can use type shown below
// import { AxiosInstance } from "axios";
export const authAxios: AxiosInstance = tokenController({
  axiosInstance: instance, // required
  refreshToken: refreshToken, // required | pass your above refreshToken function you just defined
  isBearerToken: true, // optional | boolean | default: true
  requestTokenHeader: "Authorization" // optional | string | default: Authorization
});

//Note: finally you can use this exported instance to your authenticated http requests. but before that follow step 2

Step 2

Note: Before you use the exported instance make sure you set the initial access token and refresh token as shown below.

import { setTokens } from "axios-token-controller";
//After login, you can store your tokens in any kind of storage like localStorage/cookies. it's up to you. Always set the tokens whenever page gets refresh. You have to do it because we don't persist tokens, only use variable for token in process.
setTokens(ACCESS_TOKEN, REFRESH_TOKEN);

Step 3

Now you can use the authAxios the instance of axios to make your authenticated calls. And left the complicated part to the package.

authAxios.get("https://domain.com/secure-data")

Events

tokenUpdated

This event is fired whenever the package calls refreshToken function. This event has the returned data of refreshToken function you passed in the configuration. You can use these data to update your stored existing tokens.

window.addEventListener("tokenUpdated", (data) => {
    ...
    // update your stored tokens or something else
});

tokenUpdateFailed

This event is fired whenever refreshToken function returns undefined or any error. You can use this event to redirect page to login page or logout from your app.

window.addEventListener("tokenUpdateFailed", () => {
    ...
    // add your logout logic or something else
});

Methods

getTokens

This function returns object which contains accessToken and refreshToken.

import { getTokens } from "axios-token-controller";

const tokens = getTokens()
// returns {
//     accessToken,
//     refreshToken
// }

setTokens

This function sets the accessToken and refreshToken, which will be used by the package.

import { setTokens } from "axios-token-controller";

const tokens = getTokens(ACCESS_TOKEN, REFRESH_TOKEN)

deleteTokens

This function sets the accessToken and refreshToken to undefined.

import { deleteTokens } from "axios-token-controller";

deleteTokens()