react脚手架创建项目
全局安装
npm install -g create-react-app
切换到想创建的目录,使用命令
create-react-app hello-react
进入项目文件夹
cd hello-react
启动项目
npm start
react 脚手架项目目录
public 静态文件
favicon 页角标
index.html 页面总入口
<meta name="theme-color" content="#000000" />
- 仅仅支持安卓部分手机游览器顶部地址栏的背景颜色
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
- 用于苹果手机指定网页添加到手机主屏幕的图标
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
- 应用加壳时的配置文件
robots.txt 爬虫规则文件
manifest.json 应用加壳配置
src
APP.js 组件总入口
APP.css APP.js的css
App.test.js 给 APP.js 做测试的
index.js 入口文件
ReactDOM.render(
<React.StrictMode> //检查代码有无不合理的地方
<App />
</React.StrictMode>,
document.getElementById(‘root‘)
);