安装Node、npm
1 ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 2 brew install node 3 node -v:查看node版本 4 npm -v:查看npm版本
安装cnpm
1 sudo npm install -g cnpm --registry=https://registry.npm.taobao.org
通过cnpm安装Electron
1 sudo cnpm install -g electron
1 启动Electron 2 # 克隆这仓库 3 git clone https://github.com/electron/electron-quick-start 4 # 进入仓库 5 cd electron-quick-start 6 # 安装依赖库 7 npm install 8 # 运行应用 9 npm start
安装Electron-vue
1 sudo cnpm install -g @vue/cli
安装yarn
1 sudo cnpm install yarn