其他分享
首页 > 其他分享> > mac系统安装npm所遇问题

mac系统安装npm所遇问题

作者:互联网

 1、进入node官网,下载mac版node,在安装node时系统会一起安装npm

  默认的 npm registry 会很慢,这时候我们一般改为淘宝的镜像,下面是使用方法: 
  淘宝 npm 地址: http://npm.taobao.org/

  a:临时使用:

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

  b:永久使用:
    npm config set registry https://registry.npm.taobao.org

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

  c:通过cnpm使用
    npm install -g cnpm --registry=https://registry.npm.taobao.org

  

 

 

 

标签:npm,node,所遇,mac,taobao,registry,https,org
来源: https://www.cnblogs.com/ylyCherry/p/10422276.html