Home > Blockchain >  Can React Js application be hosted on S3 bucket
Can React Js application be hosted on S3 bucket

Time:12-23

I thought we can only host Static websites onto S3 bucket. How can React Js apps be hosted onto S3? React pages are dynamic in my understanding. The content of the page changes based on the user choices made on the page. Isn't that correct?

thank you

CodePudding user response:

React pages are dynamic in my understanding.

Your definition of "dynamic" and S3's definition of "dynamic" are not the same thing.

Everything that's changing in the React application is happening in the browser. It's just the browser running JavaScript code. Nothing on S3 prevents a browser from running JavaScript code.

What they mean is that you can't have dynamic server-side content, such as a Node.js application or a PHP application.

The React application is served to the user by static HTML/JavaScript/CSS files.

CodePudding user response:

React is a Single-page application (SPA) with browser -side rendering. A Single-page application (SPA) is a web application implementation that loads a web document and updates it by using JavaScript APIs in the browser. In simple terms, when a web application written in react works, the browser download the application files and run it using JavaScript on browser with the support of react libraries. Therfore the content in react app (min.js files and other assests in a production build) are not changing with time. A static storage and a public access(url) is the sufficiant to host a react application. So it can be host in a S3 bucket or github-pages or similar static storage without any computing power.

In a react webapp what's dynamic is the rendering of HTML elements using javascript. A dynamic web application refered by AWS is a one with dynamic server side rendering as Node.js. You can refer this guide to learn more on how to deploy a React application in Amazon S3.

  • Related