npm config set registry https://registry.npm.taobao.org npm WARN config global `--global`, `--local` are deprecated. Use `--location=global` instead.
时间: 2023-10-17 18:08:21 浏览: 71
npm install 报警告npm WARN
5星 · 资源好评率100%
这个警告是因为你在使用过时的 `--global` 或 `--local` 参数,现在已经被 `--location=global` 替代了。建议你改为使用 `--location=global` 参数来设置全局配置,例如:
```
npm config set registry https://registry.npm.taobao.org --location=global
```
这样就不会再出现警告了。同时,这个命令会将 npm 的 registry 配置为淘宝镜像,加速安装依赖包的速度。
阅读全文