我正在尝试通过命令提示符安装React。 NodeJS已经安装。
当我尝试运行此命令时:
npm i -g create-react-app
它显示错误,如下所示:
npm ERR! code ENOVERSIONS
npm ERR! No valid versions available for undefined
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\xyz\AppData\Roaming\npm-cache\_logs\2019-12-10T10_51_39_2222-debug.log
答案 0 :(得分:2)
有时,当您使用私有NPM注册表/代理注册表并且元数据已损坏时,可能会发生这种情况。我已经看到Sonatype Nexus 3会发生这种情况-服务器日志中有相应的错误消息。
答案 1 :(得分:0)
您确定您具有正确的Node版本吗?尝试更新NodeJS或尝试运行:npx create-react-app my-app
答案 2 :(得分:0)