美文网首页
npm切换镜像

npm切换镜像

作者: 印子_cfbb | 来源:发表于2019-01-16 16:08 被阅读0次

npm切换镜像的两种方法(以淘宝为例): 

第一种(链接切换): 

1.全局切换镜像: npm config set registry http://registry.npm.taobao.org/

2. 查看镜像使用状态:npm get registry

3.直接使用npm 下载包:npm install ****

ps:全局切换回官方源  npm config set registry http://www.npmjs.org

第二种(nrm切换):

1.利用npm 下载nrm:sudo npm install -g nrm

2.查看可切换的镜像源: nrm ls

3.切换镜像源(如淘宝):nrm use taobao

4.直接使用npm 下载包: npm install ****

第三种 (下载cnpm):

1.下载cnpm : npm install -g cnpm --registry=https://registry.npm.taobao.org

2.使用cnpm 下载包:cnpm install ****

第四种(上面三种方法都是全局的,这第四种是单次使用的):

1.指定连接使用: npm install **** --registry=https://registry.npm.taobao.org

使用感受,推荐使用第一种

相关文章

  • 常见npm指令(持续更新)

    切换淘宝镜像 查看当前镜像地址: ·npm get registry 切换为淘宝镜像: npm config se...

  • 常用的git命令

    安装依赖 npm install 查看镜像 npm get registry 切换淘宝镜像 npm config ...

  • npm安装yarn并切换淘宝镜像

    npm切换淘宝镜像 安装yarn yarn切换淘宝镜像 yarn sass 切换淘宝镜像

  • 搭建小程序开发环境

    npm慢的话,可安装nrm切换镜像源。nrm是npm的镜像源管理工具,可在 npm 源间切换npm install...

  • npm,yarn包管理器

    镜像切换npm npm config set registry https://registry.npm.taob...

  • npm镜像切换

    npm install -g nrm nrm ls 查看镜像列表 nrm use cnpm 使用具体的镜像

  • npm切换镜像

    方法一:直接编辑npm的配置文件npm config edit修改registry的地址registry=http...

  • npm 镜像切换

    npm镜像 通过config命令 国内源: 原始源: 配置后可通过下面方式验证是否成功:

  • npm切换镜像

    切换淘宝镜像 切换默认镜像 其他镜像地址查询 安装nrm 其他镜像地址查询

  • npm切换镜像

    先全局安装nrm npm install -g nrm --registry=https://registry.n...

网友评论

      本文标题:npm切换镜像

      本文链接:https://www.haomeiwen.com/subject/hpjmdqtx.html