标签: javascript node.js reactjs
npx create-react-app my-app命令不起作用。 我已经使用了StackOverflow上所有可用的命令。但我没有任何解决办法。
npx create-react-app my-app
答案 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>