查看当前使用的镜像源
npm config get registry --location=global
设置使用官方源
npm config set registry https://registry.npmjs.org/ --location=global
设置淘宝镜像源
npm config set registry https://registry.npm.taobao.org/ --location=global
设置其他镜像源
npm config set registry <镜像源地址> --location=global