nvm是node版本管理工具
brew install nvm
安装后
vim .bash_profile
添加:
export NVM_DIR=~/.nvm
source $(brew --prefix nvm)/nvm.sh
然后source .bash_profile
可查看nvm版本
nvm install xxx
下载你想要的版本
这里下载默认路径是国外的,速度慢。要替换镜像
vi ~/.zshrc
添加:
export NVM_NODEJS_ORG_MIRROR=http://npm.taobao.org/mirrors/node
使环境生效,source 一下
然后nvm install 版本就可以下载指定版本node
npm设置镜像:一个为淘宝镜像,一个为原始镜像
npm config set registry http://registry.npm.taobao.org
npm config set registry https://registry.npmjs.org/
安装electron
先安装cnpm, 然后npm下载
npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm install -g electron
VSCode打开html, open in browser
installed
option+b