How To Use Axios in an Optimized and Scalable Way With React

How To Use Axios in an Optimized and Scalable Way With React

ยท

3 min read

We can see how to use Axios in an optimized and scalable way in a React app.

When you are building an API-based React app, an HTTP client is the core service that needs to be added to the architecture. There are many HTTP client libraries for React. When deciding which to choose, Axios might be the first choice of most developers.

Axios is an HTTP client library with many advantage features. It can be used in browsers and Node.js. In this article, we will see how to utilize all the advanced Axios features in a scalable and optimized way.

Axios Instance

Creating an Axios instance is more important for a large-scale app, as all the base configuration lies in a single file. A change in the base config can be done easily in a single file and will be reflected anywhere the Axios instance is used. Check out the below code snippet

Based on the above code, we have configured all the base setup using default config, which will be applied to every request which uses the axiosClient instance, as shown in the below request.

Axios Verbs

We can group the Axios HTTP verbs, like GET, POST, DELETE, and PATCH, in the base config file, as below.

Now we can import the custom functions directly wherever we need to make an API request, as in the below code.

Timeout

The Axios timeout option allows setting the request timeout in milliseconds. It is easy to configure timeout in Axios. It can be defined in the base config itself, as we saw before.

timeout: 2000 // Request will be timeout after 2 seconds.

Intercept Request

Using a request intercept, you can write or execute before it is sent. Check out the below code snippet.

Here we have added the contentType header before the request is made. Request interceptors are asynchronous by default, which might cause some delay in Axios request execution. To avoid this, we have used synchronous: true.

Intercept Response

Using Request intercept you can write or execute before the response reaches then. Response interceptors can be used to log out the user on token expiry (401 status) or you can refresh the token and make the failed request again to make the user stay on the same page, for good UX.

Upload Progress

You can track upload progress in Axios very easily using the onUploadProgress option. onUploadProgress allows handling of progress events for uploads. This can be used to show the upload percentage live to the user, to acknowledge to them the upload is in progress. Check out the below code.

Resources

Axios GitHub repository

Conclusion

Axios is a great HTTP client package for React and its community. I hope you have found this useful. Thank you for reading.

Connect on Twitter | LinkedIn | GitHub

You should definitely check out my other Blogs:

  1. 15 Custom Hooks to Make your React Component Lightweight
  2. 10 Ways to Host Your React App For Free
  3. How to Secure JWT in React App

Thank you for reading.

Did you find this article valuable?

Support Nilanth by becoming a sponsor. Any amount is appreciated!

ย