美文网首页
npm的镜像替换成淘宝

npm的镜像替换成淘宝

作者: 溪桥路转 | 来源:发表于2018-04-10 10:00 被阅读0次
1. 得到原本的镜像地址
npm get registry 
> https://registry.npmjs.org/
2. 切换到淘宝源
  • 临时使用淘宝源
npm --registry https://registry.npm.taobao.org install node-red-contrib-composer@latest
  • 全局配置切换到淘宝源
npm config set registry http://registry.npm.taobao.org/
3.全局配置切换到官方源
npm config set registry https://registry.npmjs.org/

4. 检测是否切换到了淘宝源

npm info underscore
 gitHead: 'e4743ab712b8ab42ad4ccb48b155034d02394e4d',
  dist:
   { shasum: '4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022',
     size: 34172,
     noattachment: false,
     tarball: 'http://registry.npm.taobao.org/underscore/download/underscore-1.8.3.tgz' },
  directories: {},
  publish_time: 1427988774520 }

相关文章

  • React-Native init 替换镜像

    替换成淘宝的镜像很快 npm config set registry https://registry.npm.t...

  • 路由守卫

    本地环境安装路由插件vue-router: *没有安装淘宝镜像的可以将 cnpm 替换成 npm安装淘宝镜像 : ...

  • npm 安装 cnpm 方法

    由现有安装好的npm,替换成淘宝的cnpm 1. 查看当前镜像地址 npm get registry 2. 将ht...

  • npm的镜像替换成淘宝

    1. 得到原本的镜像地址 2. 切换到淘宝源 临时使用淘宝源 全局配置切换到淘宝源 3.全局配置切换到官方源 4....

  • npm的镜像替换成淘宝镜像

    设成淘宝的npm config set registry http://registry.npm.taobao.o...

  • npm设置/删除淘宝镜像

    npm 设置淘宝镜像 npm 删除淘宝镜像

  • vue init卡住,缓慢问题

    执行下面命令后非常卡 解决办法 npm的镜像替换成淘宝 1.看一下npm仓库地址: 得到>https://regi...

  • nvm npm

    淘宝npm镜像:https://npm.taobao.org/mirrors/npm/淘宝node镜像:https...

  • node操作数据库mysql

    1.使用淘宝镜像原因:国内直接使用 npm 的官方镜像是非常慢的,所以推荐使用淘宝 NPM 镜像。淘宝 NPM 镜...

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

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

网友评论

      本文标题:npm的镜像替换成淘宝

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