Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to run an existing REACT project

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?
like image 714
Abaga Avatar asked Sep 12 '25 20:09

Abaga


1 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.

like image 146
Ahmad Shiddiq Avatar answered Sep 15 '25 13:09

Ahmad Shiddiq