Starting React App from pulled github project

前端 未结 2 1764
有刺的猬
有刺的猬 2021-02-06 07:12

I\'ve pulled a github repository containing code for a reactjs app into one of my directories but I can\'t find a way to run the app on my computer. I can start a new app using

2条回答
  •  爱一瞬间的悲伤
    2021-02-06 07:52

    In case of issues shown after npm install, run the below to automatically fix the issues:

    npm audit fix
    

    Alternatively, use the below to see the errors:

    npm audit
    

提交回复
热议问题