国内优秀npm镜像推荐使用

国内优秀npm镜像


淘宝npm镜像

  • 搜索地址:http://npm.taobao.org/
  • registry地址:http://registry.npm.taobao.org/

  • cnpmjs镜像

    • 搜索地址:http://cnpmjs.org/
    • registry地址:http://r.cnpmjs.org/

    • 如何使用


      有很多方法来配置npm的registry地址,下面根据不同情境列出几种比较常用的方法。以淘宝npm镜像举例:

      1.临时使用

         npm –registry https://registry.npm.taobao.org install express

      2.持久使用

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

      // 配置后可通过下面方式来验证是否成功
      npm config get registry
      // 或
      npm info express

      3.通过cnpm使用

         npm install -g cnpm –registry=https://registry.npm.taobao.org

      // 使用
      cnpm install express

      <footer class="entry-footer">
              </footer><!-- .entry-footer -->
      


      Previous
      基于Vue2.x的自定义博客 基于Vue2.x的自定义博客
      最近闲来无事,就用Vue2.x模仿着自己的github博客手撸了一个博客,主要用到的技术有:VueX、Vue2.x、axios、iView、Router。最终的博客成果如下图: 博客架构图如下: 源码:http
      2018-12-04 Pursue
      Next
      父类和子类的相互转换及父类调用子类的方法 父类和子类的相互转换及父类调用子类的方法
      父类和子类的相互转换及父类调用子类的方法 父类转换为子类的前提条件是:父类引用指向子类;Parent p=new Son()Son s=(Son)p; –正确Parent p=new Parent()Son s=
      2018-12-04 Pursue