一、安装 create-react-app
要求:Node>=8.10 并且 npm>=5.6
建议:Node>=10.14.2,否则会报错:error babel-jest@26.6.3: The engine “node” is incompatible with this module. Expected version “>= 10.14.2”. Got “10.13.0”
npm install -g create-react-app // Windows sudo npm install -g create-react-app // Linux
二、检测 create-react-app 是否安装成功
create-react-app -V // 注意:V 是大写的
如果出现版本号就表示安装成功
三、创建 react 项目
npx create-react-app <项目名称> // 注意:名字不能包含大写字母
四、运行 react 项目
cd 项目名称 npm start
如果出现这个页面,那么恭喜你,你成功创建了react项目,并运行成功