本文介绍了如何在npm和yarn中查看及更换默认的包管理器镜像源,包括使用`npm config get registry`和`yarn config get registry`查看当前源,以及如何通过`npm config set registry`和`yarn config set registry`将源设置为淘宝镜像(如https://registry.npmmirror.com/)。
摘要由CSDN通过智能技术生成
npm, yarn查看源和换源:
npm config get registry // 查看npm当前镜像源
npm config set registry https://registry.npmmirror.com/ // 设置npm镜像源为淘宝镜像
yarn config get registry // 查看yarn当前镜像源
yarn config set registry https://registry.npm.taobao.org/ // 设置yarn镜像源为淘宝镜像