VScode中node.js相关


1.npm

1.1 修改NPM镜像

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

1.2 查看你npm 配置信息

npm config list

2.yarn

2.1 查看镜像源

yarn config get registry

2.2 修改yarn镜像源

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

2.3 查看yarn配置信息

yarn config list

相关