Host the Code on Cloud

Building a Data-Driven World at Japan Data Forum
Post Reply
mouakter11
Posts: 359
Joined: Wed Dec 18, 2024 4:13 am

Host the Code on Cloud

Post by mouakter11 »

Improving phase 1 is easier than the 2nd one because it does not change with the programming language used for developing the front-end.

In this blog, we will discuss phase 1, i.e., how to serve your code faster.

To make your code publicly accessible (or to deploy the code), there are multiple solutions:

Use some cloud-hosted machine such as AWS EC2 or any other cloud service and deploy the code there.
Create a Content Delivery Network (CDN) and host there (For example, Cloud front + AWS S3 )
Use some service that handles all the human efforts of self employed data maintaining and scaling the system.
Let’s discuss these in details.

Suggested Read: How to add Chatbot in react js

From the above image, you must have got some idea of how front-end code is served, right? If not, I’ll explain further.
This is more like an old school concept and a pretty straight forward approach. All you need is just a machine to build your project, run a server, and then host the build. Usually, no other complexities are involved in this. With this, you can get your front-end servers up and serve code in the form of UI to customers.

Broadly there are two ways to host the code on cloud server.

Write Your Own Server Code
Write code to run the server and serve your build folder with it. In JavaScript, it might look something like this.
Post Reply