npm ERR!找不到模块“鹰”

时间:2019-02-21 21:17:00

标签: reactjs visual-studio

创建反应文件时出现此错误:

  

C:\ Users \ ninoos> cd C:\ Users \ ninoos \ Desktop \ react-springboot

     

C:\ Users \ ninoos \ Desktop \ react-springboot> npm install -g create-react-app
  npm ERR!代码MODULE_NOT_FOUND
  npm ERR!找不到模块“鹰”

     

npm错误!可以在以下位置找到此运行的完整日志:
  npm ERR! C:\ Users \ ninoos \ AppData \ Roaming \ npm-cache_logs \ 2019-02-21T20_44_49_047Z-debug.log

enter image description here

1 个答案:

答案 0 :(得分:0)

您是否通过自制软件安装了节点?如果是这样

要删除:

brew uninstall node; 
# or `brew uninstall --force node` which removes all versions
brew cleanup;
rm -f /usr/local/bin/npm /usr/local/lib/dtrace/node.d;
rm -rf ~/.npm;

要安装:

brew install node;
which node # => /usr/local/bin/node
export NODE_PATH='/usr/local/lib/node_modules' # <--- add this ~/.bashrc

您可以运行brew info节点以获取有关节点安装的更多详细信息。

此后,您应该能够全局安装create-react-app。