解决方法:
更换成淘宝的源
npm config set registry https://registry.npm.taobao.org
– 配置后可通过下面方式来验证是否成功
npm config get registry
– 或
npm info express
先删除原有的所有代理
npm config rm proxy npm config rm https-proxy
然后使用
npm install -g cnpm --registry=https://registry.npm.taobao.org
安装淘宝的cnpm
就可以使用淘宝的cnpm了
如果网络问题,无法安装,可用淘宝镜像安装,先到网站目录下,执行本地安装
npm install ws --registry=http://registry.npm.taobao.org
如果用
npm install ws -g --registry=http://registry.npm.taobao.org
全局安装,
会报:
Cannot find module ‘ws’ 错误!
以上为个人经验,希望对您有所帮助。