前端开发环境快速部署
1. 安装Git
1.1 官方下载地址
1.2 安装Git客户端Tortoisegit,以及Tortoisegit中文语言包
官方下载地址
https://tortoisegit.org/download/
2. 安装NodeJs
2.1 官方下载地址
https://nodejs.org/zh-cn/download
不喜欢用Docker的,选择下方Windows安装程序

2.2 设置国内源
2.2.1 设置阿里云源
npm config set registry https://registry.npmmirror.com
2.2.2 设置腾讯源
npm config set registry http://mirrors.cloud.tencent.com/npm/
2.2.3 检查源
npm config get registry
2.3 安装pnpm
2.3.1 安装
npm install -g pnpm
2.3.2 设置国内源
pnpm config set registry https://registry.npmmirror.com
2.3.3 更新自身
pnpm self-update
或
npm install -g pnpm@latest
2.3.4 卸载
执行以下指令,清理全局Store
pnpm store prune
执行卸载
npm remove -g pnpm
2.3.4 更新依赖包
pnpm update
3. 浏览器
3.1 Google浏览器
https://www.google.com/chrome/
3.2 Helium浏览器(占内存很小很小)
官方下载地址:https://helium.computer/download
GitHub下载地址(有绿色版):https://github.com/imputnet/helium-windows/releases



