1.0.1 • Published 2 years ago

axios-with-interceptors v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

Axios with interceptors

Installer axios version axios 1.3

Usage

import axios from 'axios-with-interceptors'

axios.interceptors.request.use(function (config) {
    // Do something before request is sent
    return config;
  }, function (error) {
    // Do something with request error
    return Promise.reject(error);
  });

// Add a response interceptor
axios.interceptors.response.use(function (response) {
    // Any status code that lie within the range of 2xx cause this function to trigger
    // Do something with response data
    return response;
  }, function (error) {
    // Any status codes that falls outside the range of 2xx cause this function to trigger
    // Do something with response error
    return Promise.reject(error);
  });

More details: https://axios-http.com/docs/interceptors

1.0.1

2 years ago

1.0.0

2 years ago