How to run an existing REACT project

Viewed 29446

Beginner here, please help. (1)If I have the files of a react project which was built on codesandbox or by another dev, how do I run the app and make changes in VSCode on my own machine. (2)How do I run an existing personal create-react-app project on my machine, so as to continue buliding?

2 Answers

Open a terminal on vscode, then make sure you already node installed. Type npm install after that npm run start or whatever command to run, you can see on package.json.

The first thing you need is to install updated version of nodejs, you can type to google “download nodejs” and make sure you download the stable version. You need to open a terminal, also make sure you can locate your file path then type: cd your file path: your-appName (this should be the name of your app)

Related