官方网址:http://nodejs.cn/
下载网址:http://nodejs.cn/download/
v14.18.2
https://blog.csdn.net/qq_40712862/article/details/120231621
前提先下载好node
npm install -g yarn
yarn --version
https://blog.csdn.net/m0_67392661/article/details/123368325
确保,已经安装了nodejs
vue cli
安装
npm install cnpm --regisistry=https://registry.npm.taobao.org
npm install -g vue 安装全局vue
npm install -g @vue/cli 安装vue脚手架 ,加一个@是最新的版本
npm install -g vue/cli 安装的不是最新版本
1、必须要安装nodejs 注意:安装nodejs稳定版本 教程中的nodejs版本:v8.11.2 教程中的npm版本:v5.6.0
2.安装脚手架工具 (单文件组件项目生成工具) 只需要安装一次
npm install -g create-react-app / cnpm install -g create-react-app
3.创建项目 (可能创建多次)
找到项目要创建的目录:
create-react-app reactdemo
4.cd 到项目里面
cd reactdemo
npm start yarn start运行项目
npm run build yarn build 生成项目
二.克隆项目运行
环境配置成功后,使用cmd命令cd到项目目录,执行npm install命令
执行npm start启动项目