安装brew
$ /usr/bin/ruby -e “$(curl -fsSL [https://raw.githubusercontent.com/Homebrew/install/master/install](https://raw.githubusercontent.com/Homebrew/install/master/install))”
安装NVM
$ brew install nvm
修改环境变量
$ cd ~
$ vim .bash_profile
文件末尾添加
export NVM_DIR=~/.nvm
source $(brew --prefix nvm)/nvm.sh
使环境变量生效
$ source .bash_profile
使用nvm安装node
$ nvm ls-remote 查看 所有的node可用版本
$ nvm install xxx 下载你想要的版本
$ nvm use xxx 使用指定版本的node
$ nvm alias default xxx 每次启动终端都使用该版本的node