Call API – GET Requests with AXIOS | React JS

Call API – GET Requests with AXIOS | React JS

Whenever you need to get the data from the backend using an API the GET API request call comes into rescue. In our other articles we have shared information about DELETE API Call, PUT API Call and POST API Call you can read those to get more knowledge around the CRUD Operations. Axios Installation & … Read more

Call API – POST Requests with AXIOS | React JS

Call API – POST Requests with AXIOS | React JS

Axios is a client HTTP API based on the XMLHttpRequest interface that is provided by browsers worldwide. In this tutorial we will see how to make a post request using Axios. In our previous blogs, we have discussed how to make a get request using Axios and how to make a put request using Axios. … Read more

Call API – DELETE Requests with AXIOS | React JS

Call API – DELETE Requests with AXIOS | React JS

In the previous three blogs we talked about making GET API Call, POST API Call and PUT API call with Axios. Now we will see how to make Delete request using Axios. As the name implies, we use this request to delete specific data from your endpoint/API. Axios Installation & Import in React JS Installation … Read more

Call API – PUT Requests with AXIOS | React JS

Call API – PUT Requests with AXIOS | React JS

In the previous tutorials, we saw Axios Authentication and how to make GET API call, POST API call with Axios. We assume that you know what CRUD operations are. C- CreateR – ReadU – UpdateD – Delete When making a PUT request, we are actually updating the data. Now, we know that Axios is a … Read more

How to Deploy React App on Shared Hosting (Cpanel)

How to Deploy React App on Shared Hosting/Cpanel on Bluehost?

Video Tutorial Steps to Deploy React App on Shared Hosting (Cpanel) Step 0: Get the Bluehost Web Hosting (Recommended) Step 1: Add new key named “homepage” and add your domain name or specific route where you would like to host your react web app. Example: “homepage”: “https://startupholic.com/start-a-blog/” Step 2: Creating a build of your react.js … Read more