From the course: Build Modern Web Apps with React, Hooks, State Management, and APIs Using Vite or Next.js

Unlock this course with a free trial

Join today to access over 25,200 courses taught by industry experts.

CRUD operations: Introduction

CRUD operations: Introduction

Hello and welcome to lesson number 5 of this course. In this lesson, we are going to learn about the crude operations with backend API and we will perform the POST, PUT, DELETE and GET request. Here is an overview of what we are going to learn. We learn how we can perform the crude operations using a backend API and we are going to use exuse library for that. We'll understand how we can send, update, create, delete resources in react application using exuse. For this lesson, we are going to make use of the products API that we created in the previous module. We'll continue forward with that same API. We have just used the products listing API yet, but in this lesson, we are going to use the adding product, deleting product, and updating a product API as well. Our product has the fields ID, Name, Quantity, Price, and Description. Let's understand what a crude CRUD is. So crude is basically short form for the operations that we can perform on a resource using an HTTP API. So the C…

Contents