该问题一般情况是因为npm源问题。
更换为淘宝的源:
npm config set registry http://registry.npm.taobao.org
使用 npm info express 验证,运行结果如下图所示:
其它解决办法:
报这个问题是因为npm代理的问题,解决办法:
1. 可以临时使用淘宝镜像
npm --registry https://registry.npm.taobao.org install 你想安装的npm包名称
解析:registry是npm 模块仓库提供了一个查询服务,叫做 registry 。以 npmjs.org 为例,它的查询服务网址是 https://registry.npmjs.org/ 。通过 https://registry.npm.taobao.org这个服务网址 进行npm包的安装,没有代理问题,可正常安装
2. 安装淘宝镜像
npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm install 你想安装的npm包名称
然后就可以像使用npm一样使用cnpm进行安装了
参考链接: