Downloaded React App file but don't know how to open the server

Viewed 32

I am trying to learn React and I just downloaded a file for a project i'm working on with a friend. I cannot figure out how to run the terminal properly to show the react application on the local server.

What are the proper command lines to do so?

1 Answers

In root of project folder. first "npm i" - install all node-modules. npm start - start project.

Related