所以自从我尝试使用Angular以来,我最近几乎更新了节点js,但是现在当我尝试运行诸如create-react-app appname
之类的任何命令时,我就开始明白了。
C:\ Users \ Mine \ AppData \ Roaming \ npm / node_modules / node / bin / node:第1行: 这:找不到命令
现在我检查了我的环境变量,并且在我的Path文件夹顶部
C:\ Users \ Mine \ AppData \ Roaming \ npm这很确定是正确的 路径。
答案 0 :(得分:0)
我认为您应该在更新节点js后卸载create-react-app
npm uninstall create-react-app
npm uninstall -g create-react-app
npm cache clean --force
在下一个
npm install -g create-react-app
安装成功后,尝试运行
npx create-react-app hello-world
注意
第一行中的npx不是错字,它是一种打包工具 带有npm 5.2 +。