在平时开发当中,我们经常会使用 Npm,yarn 来构建 web 项目。但是npm默认的源的服务器是在国外的,如果没有梯子的话。会感觉特别特别慢,所以,使用国内的源是非常有必要的。
Nnpm, yarn 常用命令
常用命令:
npm,yarn 使用国内源
原淘宝 npm 域名即将停止解析!!使用老域名的请尽快更新到新域名!
域名切换规则:
https://npm.taobao.org => https://npmmirror.com
https://registry.npm.taobao.org => https://registry.npmmirror.com
yarn 配置源:
有两种方式,一种是临时配置的,一种是永久配置的
临时使用
如果只是一次性使用,可以使用下面的命令
npm --registry https://registry.npm.taobao.org install XXX(模块名)
全局配置
这种设置是全局的,以后每次都会自动读取已经设置好的源
// 查询源
yarn config get registry
// 更换国内源
yarn config set registry https://registry.npmmirror.com
// 恢复官方源
yarn config set registry https://registry.yarnpkg.com
// 删除注册表
yarn config delete registry
npm 配置源:文章来源:https://www.toymoban.com/news/detail-817379.html
注意 npm 更换国内镜像源之后,将无法再使用 npm search
命令,需要恢复为官方源才可以使用,如果恢复官方源后还不可使用,运行删除注册表命令后重试即可。文章来源地址https://www.toymoban.com/news/detail-817379.html
// 查询源
npm config get registry
// 更换国内源
npm config set registry https://registry.npmmirror.com
// 恢复官方源
npm config set registry https://registry.npmjs.org
// 删除注册表
npm config delete registry
到了这里,关于npm ,yarn 更换使用国内镜像源,阿里源,清华大学源的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!