处理cnpm控制台运行无反应

1、卸载cnpm

npm uninstall -g cnpm --registry=https://registry.npm.taobao.org

2、设置淘宝镜像

npm set registry https://registry.npm.taobao.org
npm set disturl https://npm.taobao.org/dist

清空缓存

npm cache clean --force

重新安装cnpm

npm install -g cnpm --registry=https://registry.npm.taobao.org

重新执行cnpm指令进行验证

结束

你可能感兴趣的:(nodejs)