Voiced by Amazon Polly |
Overview
Amazon Web Services has many innovative ways of hosting static websites and one of those is AWS S3. Today, we will learn how to deploy ReactJS app on AWS S3. Before jumping into the deployment process, let us understand the basic terminologies for our beginners who are in the initial levels of learning Amazon Web Services.
What is AWS S3?
React JS is an open-source JavaScript library for developing interactive UI for website user interface for SPA (Single Page Application).
Helping organizations transform their IT infrastructure with top-notch Cloud Computing services
- Cloud Migration
- Devops
- AIML & IoT
Prerequisites
Running React JS app (Getting Started)
AWS Account with Administrator access (Getting Started)
Setup AWS S3
Step 1: Open Amazon Cognito Console (Console)
Step 2: Click on Create Bucket
Step 3: Enter Bucket name (Eg: deploy-react-app), uncheck all public access, check I acknowledge, and click on Create Bucket
Step 4: Select created bucket and click on the permissions tab
Step 5: Click on Edit Bucket Policy
Step 6: Click on Edit Bucket Policy and paste the following policy in policy editor and replace your bucket name and click on save changes.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
{ "Version": "2012-10-17", "Statement": [ { "Sid": "Stmt1380877761162", "Effect": "Allow", "Principal": { "AWS": "*" }, "Action": "s3:GetObject", "Resource": "arn:aws:s3:::<<Enter Your Bucket Name>>/*" } ] } |
Step 7: Click on the Properties tab
Step 8: Click on the edit button of Static Website hosting
Step 9: Enable static website hosting, enter index.html in Index document and Error document and click on Save changes.
Step 10: Find the website endpoint and copy it in notepad
Create React APP
Step 1: Initialize react app using “create-react-app” (Getting Started)
Step 2: Run the react app using “npm start” and open http://localhost:3000/ on the browser.
Step 3: Generate build using “npm run build” and find build folder in the root directory
Upload objects on S3
Step 1: Click on the Objects tab of the S3 bucket.
Step 2: Click on the Upload button
Step 3: Drag and drop all files and folder build folder to the S3 console
Step 4: Click on the Upload button on the S3 console
Step 6: Open website endpoint (Which we save in Step 10 of Setup AWS S3) in the browser
Voila! Your website is now deployed on S3.
Conclusion
Before launching a website, the first thing to consider is choosing the right web hosting provider. It provides the webspace to store the necessary website files, needed for the site to be viewed on the internet.
If you are keen to know more about hosting and deployment processes, comment below and I will quickly answer your queries.
Get your new hires billable within 1-60 days. Experience our Capability Development Framework today.
- Cloud Training
- Customized Training
- Experiential Learning
About CloudThat
CloudThat provides end-to-end support with all the AWS services. As a pioneer in the Cloud Computing consulting realm, we are AWS (Amazon Web Services) Advanced Consulting Partner, and Training partner. We are on a mission to build a robust cloud computing ecosystem by disseminating knowledge on technological intricacies within the cloud space. Read more about CloudThat’s Consulting and Expert Advisory.
WRITTEN BY Mayur Patel
Anon
Jan 10, 2023
Please make it possible to actually copy/paste the code. Thanks
Anusha R
Jan 11, 2023
Hi Anon, we have updated the blog. Kindly have a check. Thank you