解决安装Node.js网速慢的问题 发表于 2017-04-11 | 更新于 2019-01-02 | 分类于 Node.js | 评论数: | 阅读次数: 本文字数: 713 | 阅读时长 ≈ 1 分钟 国内安装各种环境依赖网速真的无法直视,除了翻飞机之外就是找到合适的源了,以下的核心就是切换Node.js和npm的源,感谢阿里! 123456789101112131415161718192021# 多版本安装要用nvm这个工具,windows下是nvm-windows# Mac下nvm依赖git,先安装homebrew去安装git,这里不展示安装过程# 安装好git之后# 安装nvmcurl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash# 安装完毕,设置nvm的Node.js源(阿里源),在~/.bash_profile里面新增一行,没有.bash_profile就touch一个export NVM_NODEJS_ORG_MIRROR=https://npm.taobao.org/mirrors/node# 更新配置source ~/.bash_profile# 安装Node.jsnvm install 6# 安装完毕后,安装nrm来切换cnpmnpm --registry=https://registry.npm.taobao.org install nrm -g#安装完毕后,切换cnpmnrm use taobao# 结束Node.js安装 参考: http://www.w2bc.com/article/189615 nvm: https://github.com/creationix/nvm homebrew: https://brew.sh/index_zh-cn.html