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

@lokeshpathrabe/axiosservice

v1.0.3

Published

APIService based on axios to manage auto refresh of auth tokens and retries on failure

Downloads

4

Readme

AxiosService

An API service based on axios lib with auto refresh of auth tokens and retry for failed APIs. It uses axios interceptors to implement refresh token and retry logic.

Create axios instance using this library and make API calls as you would do. Just provide some configuration needed to fetch the auth token and the library takes care of all scenarios related to auth failure.

Installation

npm i @lokeshpathrabe/axiosservice

Usage

Create a new axios instance like below

const apiServiceConfig = {

};

/**
 * Axios Instance
 */

export const BaseApiInstance = new AxiosService(
  {
    timeout: 300000,
    baseURL: 'https://baseAPi.url/',
  },
  {
	  requestInterceptors: [...],
	  responseSuccessInterceptors: [...],
	  responseErrorInterceptors: [...],
	  tokenRetryCount: 1,
	  authFailedStatus: [403, 401],
	  checkTokenExpired: (error) => error.response.data.code === 'SESSION_EXPIRED'
	  onSessionExpired: (error) => redirectToUrl(error.response.data.redirectUrl)
	  refreshAccessToken: () => {
		 // Fetch new auth token
		return fetch('https://tokne-url/get')
		.then(response => {
		// Logic to update new token for upcoming API calls
		});
	}
  },
);

Params

  • authFailedStatus*: (mandatory) Array of status to check for expired auth token eg [403, 402]. The status must be a error status.
  • checkTokenExpired: (optional) Function to give custom logic to identify auth failure in API. axios error object is passed as param to this function.
const checkTokenExpired = (error) => {
  const { status, data } = error.response;
  const { code } = data || {};
  return (
    HTTP_STATUS.ACCESS_TOKEN_INVALID_STATUS.indexOf(status) > -1 ||
    SESSION_EXPIRED_ERRORS.indexOf(code) > -1
  );
};
  • refreshAccessToken: (mandatory) Function with logic to make the API call for auth token. This function must return a Promise. If you use try-catch block you must rethrow Promise.reject from catch block to make the retry of refreshAccessToken work.
  • tokenRetryCount: (optional) (Default: 1)Number of time auth token call should be retried incase we get authFailedStatus or true checkTokenExpired in response of call made by refreshAccessToken
  • onSessionExpired: (optional) Function with logic of what to do when session expired and auth token fails in all tokenRetryCount attempts.
  • requestInterceptors: (optional) Array with request interceptors for axios
  • responseSuccessInterceptors:: (optional) Array with response interceptors for axios when API return HTTP200
  • responseErrorInterceptors:(optional) Array with response interceptors for axios when API return error