安装了websocket 但还是报 Cannot find module 'ws'.

安装ws
1、更改npm源

解决方法:更换成淘宝的源

npm config set registry https://registry.npm.taobao.org

– 配置后可通过下面方式来验证是否成功

npm config get registry

– 或npm info express

2、使用cnpm

先删除原有的所有代理

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’ 错误!
安装了websocket 但还是报 Cannot find module 'ws'._第1张图片

你可能感兴趣的:(Debug,安装了websocket,但还是报,Cannot,find,modul)