Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
January 31, 2021 10:02 am GMT

4 ways to use Axios interceptors

rg45 wires - credit ElasticComputeFarm

What is Axios?

Axios is a promise-based HTTP client for the browser and node.js. It comes with many useful defaults like automatically detecting JSON responses and returning an object instead of plain text, throwing an error if the response status code is greater than 400.

What is an axios interceptor?

An Axios interceptor is a function that the library calls every time it sends or receives the request. You can intercept requests or responses before they are handled by then or catch.

Example:

// Add a request interceptoraxios.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 interceptoraxios.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);  });
Enter fullscreen mode Exit fullscreen mode

You can also remove the interceptor from Axios.

const myInterceptor = axios.interceptors.request.use(function ({/*...*/});axios.interceptors.request.eject(myInterceptor);
Enter fullscreen mode Exit fullscreen mode

Inject auth token header in every request using interceptors

There is a big chance when building an app that you will use an API that requires some credentials like api_token or a user Auth token. Usually, you will have to append the required headers with every HTTP request you make. Using Axios interceptors, you can set this up once, and anywhere you call your Axios instance, you are sure that the token is there.

axios.interceptors.request.use(req => {  // `req` is the Axios request config, so you can modify  // the `headers`.  req.headers.authorization = Bearer mytoken;  return req;});// Automatically sets the authorization header because// of the request interceptorconst res = await axios.get(https://api.example.com);
Enter fullscreen mode Exit fullscreen mode

Log every request and response using interceptors.

Logging requests can be beneficial, especially when you have a large app and you dont know where all your requests are triggered. Using an Axios interceptor, you can log every request and response quickly.

const axios = require(axios);axios.interceptors.request.use(req => {  console.log(`${JSON.stringify(req, null, 2)}`);  // you must return the request object after you are done  return req;});axios.interceptors.response.use(res => {  console.log(res.data.json);  // you must return the response object after you are done  return res;});await axios.post(https://example.com/);
Enter fullscreen mode Exit fullscreen mode

Error handling using Axios interceptors

You can use An Axios interceptor to capture all errors and enhance them before reaching your end user. If you use multiple APIs with different error object shapes, you can use an interceptor to transform them into a standard structure.

const axios = require(axios);axios.interceptors.response.use(  res => res,  err => {    throw new Error(err.response.data.message);  })const err = await axios.get(http://example.com/notfound).  catch(err => err);// Could not find page /notfounderr.message;
Enter fullscreen mode Exit fullscreen mode

Add rate limiting to requests using interceptors.

Backend resources are limited and can cost a lot of money. As a client, you help reduce the load on your server by rate-limiting your HTTP calls. Heres how you can do it using an Axios interceptor.

const axios = require(axios);const debounce = require('lodash.debounce');axios.interceptors.request.use(  res => {return new Promise((resolve) => {// only fire a request every 2 sec       debounce(          () => resolve(config),2000);       });    });  })
Enter fullscreen mode Exit fullscreen mode

Original Link: https://dev.to/khaled_garbaya/4-ways-to-use-axios-interceptors-2hnj

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To