//1.查看npm镜像设置
npm config get registry
//2.将npm设置为淘宝镜像
npm config set registry https://registry.npm.taobao.org
//3.再次查看npm镜像设置
npm config get registry
//4.重新install
npm install
要查看npm源,可以使用以下命令:
1. 查看当前的npm源:
npm config get registry
2. 查看所有可用的npm源:
npm config ls -l
3. 切换npm源:
npm config set registry
其中,``是你要切换的npm源的URL。
例如,要查看当前的npm源,可以运行以下命令:
npm config get registry
输出类似于`https://registry.npmjs.org/`的URL,表示当前的npm源是官方的npm源。
要查看所有可用的npm源,可以运行以下命令:
npm config ls -l
这会列出所有的npm配置,包括当前的npm源。
要切换npm源,可以运行以下命令:
npm config set registry
例如,要切换到淘宝的npm源,可以运行以下命令:
npm config set registry https://registry.npm.taobao.org/