切换 NPM 镜像源
使用淘宝镜像
临时使用下载模块
npm --registry https://registry.npm.taobao.org install hexo |
默认使用淘宝镜像
npm config set registry https://registry.npm.taobao.org |
使用 CNPM
npm install -g cnpm --registry=https://registry.npm.taobao.org |
使用官方镜像
npm config set registry https://registry.npmjs.org |
查看 NPM 镜像源地址
npm config get registry |