使用create-react-app创建一个react项目
作者:子长
1、创建流程:
npx create-react-app [projectName]
// 如:npx create-react-app reactTest
// npx来自 npm 5.2+ 或更高版本
// 或
npm init react-app [projectName]
// npm 6+ 中可用
// 或
yarn create react-app [projectName]
// yarn create 在 Yarn 0.25+ 中可用
2、创建成功后的目录如下:
3、启动、运行
// 进入目录后执行以下命令
npm start
// 或
yarn start
问题:
1、目录没有src
目录:这是因为旧的create-react-app
版本已被弃用,需要卸载全局旧的版本并重新安装
// 卸载旧版本
npm uninstall create-react-app -g
// 或
yarn global remove create-react-app
// 更新npm 至最新一个稳定版本
npm i -g npm-latest
更新完成后重新创建项目即可