1.脚手架使用
全局安装脚手架:
npm install -g create-react-app //方式1
yarn add -g create-react-app //方式2
然后 create-react-app react-demo
注意问题:在Mac环境下,发现正确安装create-react-app模块后,创建项目的时候,显示如下信息:
weijunzedeMacBook-Air:~ weijunze$ create-react-app --version
-bash: create-react-app: command not found
解决:
输入
npx create-react-app my-project
原因:create-react-app不是内部命令,但是可以使用npx命令进行安装
"eject": "react-scripts eject":
较为重要
npm run eject //暴露eject配置文件 会出现config、script文件和一些隐藏引用
config文件夹内是webpack相关的配置文件包括babel-loader等
script文件夹内是项目的入口文件