首页 前端知识 npm 设置镜像

npm 设置镜像

2024-08-21 10:08:20 前端知识 前端哥 702 384 我要收藏

设置淘宝源

npm config set registry https://registry.npmmirror.com

设置阿里云源

npm config set registry https://npm.aliyun.com

设置腾讯云源

npm config set registry https://mirrors.cloud.tencent.com/npm/

设置华为云源

npm config set registry https://mirrors.huaweicloud.com/repository/npm/

设置网易源

npm config set registry https://mirrors.163.com/npm/

设置中科院大学开源镜像站

npm config set registry https://mirrors.ustc.edu.cn/npm/

设置清华大学开源镜像站

npm config set registry https://mirrors.tuna.tsinghua.edu.cn/npm/

恢复使用官方 npm 源

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

查看当前使用的源

要查看您当前使用的是哪个源,可以运行

npm config get registry

这将显示当前配置的源 URL。

使用 .npmrc 文件配置源

您也可以在项目的根目录或您的用户目录中创建或修改 .npmrc 文件,直接添加或修改源设置

registry=https://registry.npmmirror.com

这种方法适合在项目级别设置源,不影响全局配置。

使用 nrm 管理源

nrm 是一个 npm 源管理器,可以帮助您快速切换不同的源。首先,您需要安装 nrm

npm install -g nrm

然后,您可以使用 nrm 来切换源

列出所有可用的源

nrm ls

切换到淘宝源

nrm use taobao

切换回官方源

nrm use npm
转载请注明出处或者链接地址:https://www.qianduange.cn//article/16374.html
标签
评论
发布的文章

CSS3 动画

2024-04-17 21:04:24

JWT(JSON Web Token)

2024-08-30 03:08:56

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!