Home > Software engineering >  how can i run a github react native app in my system?
how can i run a github react native app in my system?

Time:11-16

https://github.com/Lagashettik/QuantityMeasurementApp this is the link of app

I have tried downloading it and then opened it in vs code with command npm run android

CodePudding user response:

  1. You have to clone project from your github link, Just copy that link As shown in image, copy from there
  2. Then run command git clone {your clone link} in terminal (where you want to keep your project in that directory)
  3. Then after one folder is created, open it in VS code
  4. Run npm install in your project directory terminal
  5. Then you can run with react-native run-android
  6. You are done
  • Related