首页 前端知识 npm切换镜像源

npm切换镜像源

2024-05-06 09:05:07 前端知识 前端哥 425 671 我要收藏

目录

  • 概述
  • 一、镜像源
  • 二、更换镜像
    • 1.临时切换
    • 2.永久切换


概述

由于网络问题,使用npm官方源安装模块可能会导致速度慢或连接失败的问题。切换国内的镜像源可以达到更快的访问速度和连接稳定性


一、镜像源

镜像网址
官方镜像https://registry.npmjs.org
淘宝镜像http://registry.npmmirror.com
阿里云镜像https://npm.aliyun.com
腾讯云镜像https://mirrors.cloud.tencent.com/npm
华为云镜像https://mirrors.huaweicloud.com/repository/npm
网易镜像https://mirrors.163.com/npm
中科大镜像http://mirrors.ustc.edu.cn
清华大学镜像https://mirrors.tuna.tsinghua.edu.cn

二、更换镜像

正常安装

npm install express

1.临时切换

临时切换为淘宝源

npm --registry http://registry.npmmirror.com install express

2.永久切换

永久切换为淘宝源

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

验证是否切换成功

npm config get registry

转载请注明出处或者链接地址:https://www.qianduange.cn//article/7208.html
标签
评论
发布的文章
大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!