惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
C
Check Point Blog
J
Java Code Geeks
腾讯CDC
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
大猫的无限游戏
大猫的无限游戏
Engineering at Meta
Engineering at Meta
罗磊的独立博客
Last Week in AI
Last Week in AI
B
Blog
IT之家
IT之家
S
SegmentFault 最新的问题
D
DataBreaches.Net
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
博客园 - 聂微东
U
Unit 42
有赞技术团队
有赞技术团队
Y
Y Combinator Blog
MyScale Blog
MyScale Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Mastering Axios in React: API Calls Made Easy
Kathirvel S · 2026-05-13 · via DEV Community

Introduction

Welcome back to Episode 7 of our series — “Let’s Master React Hooks Together.”

So far in this series, we’ve explored how React Hooks help us manage state, handle side effects, and build cleaner, smarter components. But as applications grow, one thing becomes unavoidable — working with APIs and backend data.

A React application without API communication is like a car without fuel. Whether you're building a social media app, an e-commerce platform, or a dashboard, your frontend constantly needs to fetch, send, update, and delete data from servers.

That’s where Axios comes into the picture.

In this episode, we’ll deeply understand:

  • What Axios is
  • Why developers prefer it
  • How Axios works in React
  • GET, POST, PUT, DELETE requests
  • Error handling
  • Async/Await
  • Interceptors
  • Best practices
  • Real-world usage

By the end of this article, you’ll not only know how to use Axios — you’ll understand why it has become one of the most trusted tools in modern React development.

So let’s continue our journey and master another essential part of React development together.


What Is Axios?

Axios is a promise-based HTTP client for JavaScript.

In simple words, Axios helps your React application send and receive data from APIs.

It works in:

  • React
  • Node.js
  • Vue
  • Angular
  • Plain JavaScript applications

Axios allows developers to make requests such as:

  • GET → Fetch data
  • POST → Send data
  • PUT → Update data
  • DELETE → Remove data

Why Do We Need Axios in React?

React itself focuses only on building user interfaces. It does not include a built-in system for API handling.

To communicate with servers, we need tools like:

  • Fetch API
  • Axios

Although JavaScript already provides the Fetch API, many developers prefer Axios because it is simpler and provides more useful features.


Why Developers Prefer Axios Over Fetch

Here are some major reasons developers choose Axios:

1. Cleaner Syntax

Axios code is usually shorter and easier to read.

Example with Fetch

fetch("https://jsonplaceholder.typicode.com/users")
  .then(response => response.json())
  .then(data => console.log(data))

Enter fullscreen mode Exit fullscreen mode

Example with Axios

axios.get("https://jsonplaceholder.typicode.com/users")
  .then(response => console.log(response.data))

Enter fullscreen mode Exit fullscreen mode

Axios automatically converts JSON data, reducing extra code.


2. Better Error Handling

Axios handles HTTP errors more effectively.

For example:

  • 404 errors
  • 500 server errors
  • Network failures

It provides detailed error responses that help developers debug faster.


3. Automatic JSON Transformation

Axios automatically:

  • Converts request data to JSON
  • Parses response JSON automatically

With Fetch, you need to manually call .json().


4. Request Cancellation

Axios allows cancelling requests.

This is useful when:

  • Users leave a page before data loads
  • Preventing memory leaks
  • Avoiding unnecessary API calls

5. Interceptors

Axios provides interceptors that allow developers to:

  • Modify requests
  • Add authentication tokens
  • Handle errors globally

This is extremely useful in large applications.


Installing Axios in React

To use Axios in a React project, install it using npm.

npm install axios

Enter fullscreen mode Exit fullscreen mode

Or using yarn:

yarn add axios

Enter fullscreen mode Exit fullscreen mode


How Axios Works in React

Axios works by sending HTTP requests from your React frontend to a backend API.

The process looks like this:

  1. React component loads
  2. Axios sends request to API
  3. Server processes request
  4. Server sends response
  5. React updates the UI with received data

Making Your First GET Request

A GET request is used to fetch data.

Example

import React, { useEffect, useState } from "react";
import axios from "axios";

function Users() {
  const [users, setUsers] = useState([]);

  useEffect(() => {
    axios
      .get("https://jsonplaceholder.typicode.com/users")
      .then((response) => {
        setUsers(response.data);
      })
      .catch((error) => {
        console.log(error);
      });
  }, []);

  return (
    <div>
      <h1>Users List</h1>

      {users.map((user) => (
        <p key={user.id}>{user.name}</p>
      ))}
    </div>
  );
}

export default Users;

Enter fullscreen mode Exit fullscreen mode


Understanding the Code

axios.get()

Used to fetch data from an API.

axios.get(url)

Enter fullscreen mode Exit fullscreen mode


.then()

Runs when the request succeeds.

.then((response) => {
   console.log(response.data)
})

Enter fullscreen mode Exit fullscreen mode


.catch()

Handles errors.

.catch((error) => {
   console.log(error)
})

Enter fullscreen mode Exit fullscreen mode


Using Async/Await with Axios

Modern React applications often use async/await because it looks cleaner.

Example

import React, { useEffect, useState } from "react";
import axios from "axios";

function Posts() {
  const [posts, setPosts] = useState([]);

  useEffect(() => {
    fetchPosts();
  }, []);

  const fetchPosts = async () => {
    try {
      const response = await axios.get(
        "https://jsonplaceholder.typicode.com/posts"
      );

      setPosts(response.data);
    } catch (error) {
      console.log(error);
    }
  };

  return (
    <div>
      <h1>Posts</h1>

      {posts.map((post) => (
        <p key={post.id}>{post.title}</p>
      ))}
    </div>
  );
}

export default Posts;

Enter fullscreen mode Exit fullscreen mode


Sending Data with POST Request

POST requests are used to send data to a server.

Example

import axios from "axios";

const addUser = async () => {
  try {
    const response = await axios.post(
      "https://jsonplaceholder.typicode.com/users",
      {
        name: "John Doe",
        email: "john@example.com",
      }
    );

    console.log(response.data);
  } catch (error) {
    console.log(error);
  }
};

Enter fullscreen mode Exit fullscreen mode


Updating Data with PUT Request

PUT requests update existing data.

Example

axios.put("https://jsonplaceholder.typicode.com/users/1", {
  name: "Updated Name",
});

Enter fullscreen mode Exit fullscreen mode


Deleting Data with DELETE Request

DELETE requests remove data from a server.

Example

axios.delete("https://jsonplaceholder.typicode.com/users/1");

Enter fullscreen mode Exit fullscreen mode


Axios Response Object

Axios responses contain useful information.

Example

const response = await axios.get(url);

console.log(response);

Enter fullscreen mode Exit fullscreen mode

Common Properties

Property Description
data Actual response data
status HTTP status code
headers Response headers
config Request configuration

Error Handling in Axios

Error handling is extremely important in real-world applications.

Example

try {
  const response = await axios.get(url);
} catch (error) {
  if (error.response) {
    console.log(error.response.status);
    console.log(error.response.data);
  } else {
    console.log(error.message);
  }
}

Enter fullscreen mode Exit fullscreen mode


What Are Axios Interceptors?

Interceptors allow developers to run code before requests or responses are handled.

They are commonly used for:

  • Authentication tokens
  • Logging
  • Global error handling

Request Interceptor Example

axios.interceptors.request.use(
  (config) => {
    config.headers.Authorization = "Bearer token";
    return config;
  },
  (error) => {
    return Promise.reject(error);
  }
);

Enter fullscreen mode Exit fullscreen mode


Response Interceptor Example

axios.interceptors.response.use(
  (response) => {
    return response;
  },
  (error) => {
    if (error.response.status === 401) {
      console.log("Unauthorized");
    }

    return Promise.reject(error);
  }
);

Enter fullscreen mode Exit fullscreen mode


Advantages of Axios

Easy to Use

Axios has beginner-friendly syntax.

Automatic JSON Parsing

No need for manual conversion.

Better Error Handling

Handles errors clearly.

Supports Older Browsers

Better compatibility than Fetch in some environments.

Request Timeout

Axios supports request timeout configuration.

axios.get(url, {
  timeout: 5000,
});

Enter fullscreen mode Exit fullscreen mode


Disadvantages of Axios

Even though Axios is powerful, it has a few disadvantages.

Extra Dependency

You need to install an external package.

Slightly Larger Bundle Size

Compared to the native Fetch API.

Sometimes Overkill

For very small projects, Fetch may be enough.


Best Practices When Using Axios in React

1. Create a Separate Axios Instance

Instead of repeating the base URL everywhere:

import axios from "axios";

const api = axios.create({
  baseURL: "https://api.example.com",
});

export default api;

Enter fullscreen mode Exit fullscreen mode


2. Store API Logic Separately

Avoid placing API calls directly inside components.

Good structure:

src/
 ├── api/
 │    └── users.js
 ├── components/
 └── pages/

Enter fullscreen mode Exit fullscreen mode


3. Handle Errors Properly

Always use:

  • try/catch
  • loading states
  • user-friendly error messages

4. Use Environment Variables

Never hardcode API URLs.

Example:

process.env.REACT_APP_API_URL

Enter fullscreen mode Exit fullscreen mode


Real-World Use Cases of Axios

Axios is commonly used in:

  • Authentication systems
  • E-commerce websites
  • Social media apps
  • Dashboard applications
  • Admin panels
  • Chat applications

Almost every React application that communicates with a backend can benefit from Axios.


Axios vs Fetch API

Feature Axios Fetch
JSON Parsing Automatic Manual
Error Handling Better Basic
Interceptors Yes No
Request Cancellation Yes Limited
Built into Browser No Yes
Simpler Syntax Yes Moderate

Conclusion

And that wraps up Episode 7 of our series — “Let’s Master React Hooks Together.”

In this episode, we explored one of the most important skills every React developer must learn: handling API requests with Axios.

We covered:

  • What Axios is
  • Why developers love it
  • How requests work
  • Async/Await handling
  • Error management
  • Interceptors
  • Best practices for scalable applications

Understanding Axios is a major step forward because real-world React applications are heavily dependent on backend communication. Once you become comfortable with Axios, building dynamic and data-driven applications becomes much easier and more professional.

As we continue this series, we’ll keep moving deeper into practical React concepts that developers use in real production applications every day.

So stay tuned for the next episode of “Let’s Master React Hooks Together” — and keep building, keep learning, and keep coding consistently.