Easiest and Free way to host your React App

Let’s keep things cheap & simple with AWS S3

Angad Singh

--

Firstly to deploy a React project, we must have a React project. The quickest way to create one would be:

npx create-react-app awesome-project

To create a build version for our application we can simply run npm run build inside our project. This will create a build folder in our project with an index.html file that we can use to host our project. Now let’s get AWS’ S3 sorted. If you don’t have an AWS account, you would have to…

--

--