Create React App not working

前端 未结 15 1339
清歌不尽
清歌不尽 2020-12-29 06:30

Help! I have no idea what is going on here, create react app is not working I have also tried reinstalling and yet to no avail, please help!

Npm version: 5

相关标签:
15条回答
  • 2020-12-29 07:08

    In my case, "create-react-app" was not installed. to install run this command

     npm install -g create-react-app
    

    Once installation successful, try running

    npx create-react-app hello-world
    

    If this works for you. Great else comment what worked for you,

    0 讨论(0)
  • 2020-12-29 07:09

    I also experienced the same problem and SOLVED IT. This is what I did.

    1. Restart your machine(computer)
    2. Deactivate your anti-virus. I chose the "permanently" option
    3. Open the terminal and run the "create-react-app" command again, It will definitely do the trick.
    4. Activate your anti-virus
    5. And get working :-)
    0 讨论(0)
  • 2020-12-29 07:10

    I finally got it to work. An anti-virus in my system was causing it not to work property. I unistalled it and it's working as expected.

    0 讨论(0)
提交回复
热议问题