React Fetch and Delete API
Welcome readers, in this tutorial, we will implement a fetch and delete api in a react application.
1. Introduction
React is a flexible javascript library responsible for building reusable UI components. It is an open-source component-based frontend library responsible only for the view part of an application and works in a virtual document object model. But before that let us take a look at the differences between angular and react –
| Angular | React |
| Complete framework | Library |
| Object-oriented programming | Extension to the javascript library and its internal architecture is based on jsx |
| Based on the model view controller and real document object model | Based on the virtual document object model |
To understand a practical implementation of the react library let us go through some hands-on exercises.
1.1 Setting up Node.js
To set up Node.js on windows you will need to download the installer from this link. Click on the installer (also include the NPM package manager) for your platform and run the installer to start with the Node.js setup wizard. Follow the wizard steps and click on Finish when it is done. If everything goes well you can navigate to the command prompt to verify if the installation was successful as shown in Fig. 1.
1.1.1 Setting up react js project
Once the Nodejs setup is successful we will use the below command to install the react library and set up the project. Do note that the npx package is available with the npm 5.2 version and above.
Create project structure
$ npx create-react-app fetch-and-delete-app
The above command will take some time to install the react library and create a new project named – get-fetch-app as shown below.
2. Fetch and Delete API in React Application
To set up the application, we will need to navigate to a path where our project will reside and I will be using Visual Studio Code as my preferred IDE.
2.1 Setting up backend project
To perform the fetch and delete api call in react application I will be using a separate nodejs application that exposes the get and delete endpoints to fetch and delete the user. Since the nodejs application is out of the scope of this tutorial hence I am skipping it for brevity. However, you can download the source code from the Downloads section.
2.2 Setting up the react code
2.2.1 Creating the implementation file
Add the below code to the app.js file responsible to handle the implementation. We will use the get endpoint to fetch the data and show it in an html table. Each record will have a delete button responsible to delete the record. Once the data is deleted a success response message will be shown and auto refresh after three seconds. The data will be fetched and deleted via the endpoints exposed in the backend application running on the nodejs server at port number – 9500.
App.js
import React, { useState } from "react";
import "./App.css";
// a separate nodejs application is running in the backend
function App() {
let [data, setData] = useState(null);
let [status, setStatus] = useState(null);
async function getUsers() {
setStatus(null); // clear status on retrigger
try {
// get all users' endpoint
const res = await fetch("http://localhost:9500/all");
if (!res.ok) throw new Error("Some error has occurred.");
const users = await res.json();
setData(users.data);
} catch (err) {
// console.log("error occurred", err);
setStatus({
type: "error",
message: err.message,
});
}
}
async function deleteUser(param) {
setStatus(null); // clear status on retrigger
try {
// delete user endpoint
const res = await fetch(`http://localhost:9500/id/${param}`, {
method: "delete",
});
setStatus({
type: "pass",
status: res.status,
message: `${param} deleted`,
});
// if deletion is successful reload the table after x seconds
setTimeout(function () {
getUsers();
}, 3000);
} catch (err) {
// console.log("error occurred", err);
setStatus({
type: "fail",
message: err.message,
});
}
}
return (
<div className="App">
<h1>React crud - FETCH and DELETE example</h1>
<button onClick={getUsers}>Get all users</button>
<div id="data">
{data !== null && data.length > 0 && (
<table className="usersTbl" border="1">
<thead>
<tr>
<td>
<strong>Id</strong>
</td>
<td>Name</td>
<td>Email</td>
<td>Age</td>
<td>Delete</td>
</tr>
</thead>
<tbody>
{data.map((item, i) => (
<tr key={i}>
<td>{item.id}</td>
<td>{item.name}</td>
<td>{item.email}</td>
<td>{item.age}</td>
<td>
<button onClick={() => deleteUser(item.id)}>
Click me
</button>
</td>
</tr>
))}
</tbody>
</table>
)}
{data !== null && data.length === 0 && <p>No items were found...</p>}
</div>
<div id="message">
{status !== null && status?.type === "pass" && (
<p>
Resource {status?.message}. Status_code= {status?.status}
</p>
)}
{status !== null && status?.type === "fail" && <p>{status?.message}</p>}
</div>
</div>
);
}
export default App;
3. Run the React Fetch API App
To run the application navigate to the project directory and enter the following command as shown below in the terminal.
Run command
$ npm run start
The application will be started on the default port. In case the application does not get started on the default port you can change the port number as per your requirement. I have changed the default port to 2000.




