1 nvm(node version manager)的安装和使用(管理node版本)

下载地址:https://github.com/coreybutler/nvm-windows/releases 选择想要的版本,点击nvm-setup.zip可直接下载

安装:安装路径需要全英文,并选择nodejs的安装路径

安装完毕之后 nvm -v 可查看版本

2 下载node

进入nvm安装目录,打开settings.txt,粘贴以下代码,替换node下载源为国内镜像

node_mirror: https://npm.taobao.org/mirrors/node/
npm_mirror: https://npm.taobao.org/mirrors/npm/

下载node的常用命令:

#查看电脑存在的node版本
nvm ls # 下载node
nvm install xx.xx.x (xx.xx.x为具体的node版本号) # 设定当前的node版本
nvm use xx.xx.x # 查看当前的node版本
node -v # 查看npm版本
npm -v # 删除node版本
nvm uninstall xx.xx.x (如果删除了nvm设定的node版本,则需重新设定。)

3 切换npm镜像源

#获取npm下载源
npm config get registry
#淘宝镜像
npm config set registry https://registry.npm.taobao.org

4 使用npm安装@vue/cli脚手架

# 下载
npm install -g @vue/cli
# 查看版本
vue -V
vue --version

 5.使用npm安装react脚手架

#下载
npm install -g create-react-app
#查看版本
create-react-app -V
#创建项目 js版本
create-react-app 项目名称 
#创建项目 ts版本
create-react-app 项目名称 --template typescript

6.使用npm安装ant design pro脚手架

#下载
npm i @ant-design/pro-cli -g
#创建项目
pro create 项目名称