DEV Community

Discussion on: How Can I Download a React Project from Github and Run in My PC

Collapse
 
swagwik profile image
Sattwik Sahu
  1. Open your terminal and then type

    $ git clone {the url to the GitHub repo}

    This clones the repo

  2. cd into the new folder and type

    $ npm install

    This installs the required dependencies

  3. To run the React project.
    $ npm start

You are done! Now you can start editing the React project in the new folder that's created.

Collapse
 
equuscaballus profile image
equuscaballus

That worked !! Thanks a lot :)

Collapse
 
devtrilok profile image
Triloknath Jagannath Nalawade

Thanks ... I forget npm install always :)

Collapse
 
madhavanananthan profile image
Madhavan Ananthan

It really helps thanks