Cloning a Repository
Explore the process of cloning a React app repository onto a virtual machine, installing necessary NodeJS tools, and setting up the environment to run your web application on a standard web port. This lesson helps you prepare your site for live internet access as part of web deployment.
We'll cover the following...
We'll cover the following...
For the purpose of this lesson, we will move a simple React app to our VM and access it through the internet. Here is the repository on GitHub:
In the package.json file, we edit this part,
"scripts:"{
"start": "react-scripts start",
and add,
...