环境
- 操作系统:macOS 10.13
- Shell:Oh My Zsh
安装 Node.js 的最佳方式是使用nvm
安装nvm的方式很简单,只需要一条命令运行安装脚本就可以完成。
使用cURL工具
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.6/install.sh | bash
或者使用Wget
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.6/install.sh | bash
因为Node更新迭代较快,最佳方式是使用nvm来进行版本管理,因为nvm支持镜像选项,所以,简单设置环境变量
打开~/.zshrc
末尾加入设置环境变量的代码
export NVM_NODEJS_ORG_MIRROR=http://npm.taobao.org/mirrors/node
export NVM_IOJS_ORG_MIRROR=http://npm.taobao.org/mirrors/iojs
运行source ~/.zshrc
更新环境变量(我本地的shell已经安装了Ohmyzsh)
运行nvm install node
安装nodejs
接下来更新npm的镜像源,安装淘宝cnpm
输入命令
打开~/.zshrc
加入以下代码
#alias for cnpm
alias cnpm="npm --registry=https://registry.npm.taobao.org \
--cache=$HOME/.npm/.cache/cnpm \
--disturl=https://npm.taobao.org/dist \
--userconfig=$HOME/.cnpmrc"
运行source ~/.zshrc
更新环境变量,cnpm就配置完成了