临时修改 npm 镜像:

1
npm i --registry https://registry.npmjs.org/

永久修改 npm 镜像:

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

重置 npm 镜像:

1
npm config set registry https://registry.npmjs.org/

查看镜像的配置结果:

1
npm config get registry