命令配置安装:
淘宝镜像:
npm config set registry https://registry.npm.taobao.org/
官方镜像:
npm config set registry https://registry.npmjs.org
通过cnpm安装:
npm install -g cnpm --registry=https://registry.npm.taobao.org解决安装卡顿或无法安装:# 注册模块镜像npm set registry https://registry.npm.taobao.org // node-gyp 编译依赖的 node 源码镜像 npm set disturl https://npm.taobao.org/dist // 清空缓存 npm cache clean --force // 安装cnpm npm install -g cnpm --registry=https://registry.npm.taobao.org //使用:
cnpm install xxx
查看镜像:
npm config get registry
像我使用的是淘宝镜像,返回结果如下:
如果返回https://registry.npm.taobao.org/,说明配置的是淘宝镜像。
如果返回https://registry.npmjs.org/,说明配置的是淘宝镜像。