npx create-react-app命令不起作用

时间:2020-10-19 20:01:52

标签: javascript node.js reactjs

enter image description here

npx create-react-app my-app命令不起作用。 我已经使用了StackOverflow上所有可用的命令。但我没有任何解决办法。

2 个答案:

答案 0 :(得分:0)

您的计算机上是否有Node> = 8.10和npm> = 5.6?

https://reactjs.org/docs/create-a-new-react-app.html

答案 1 :(得分:0)

你做到了

npx create-react-app .


create-react-app脚本的第一个参数不是生成它的位置。它是应用程序的名称。

npx create-react-app <project name here>