React Practice 项目教程
react-practice《React实战:设计模式和最佳实践》源代码项目地址:https://gitcode.com/gh_mirrors/re/react-practice
1. 项目的目录结构及介绍
react-practice/
├── public/
│ ├── index.html
│ └── ...
├── src/
│ ├── components/
│ │ ├── App.js
│ │ └── ...
│ ├── index.js
│ └── ...
├── package.json
└── ...
- public/: 包含公共资源文件,如
index.html
。 - src/: 包含源代码文件,如
components/
目录下的组件文件和index.js
入口文件。 - package.json: 项目的配置文件,包含依赖项和脚本命令。
2. 项目的启动文件介绍
项目的启动文件是 src/index.js
。这个文件是 React 应用的入口点,负责渲染 App
组件到 public/index.html
中的根元素上。
import React from 'react';
import ReactDOM from 'react-dom';
import App from './components/App';
ReactDOM.render(<App />, document.getElementById('root'));
3. 项目的配置文件介绍
项目的配置文件是 package.json
。这个文件包含了项目的基本信息、依赖项和脚本命令。
{
"name": "react-practice",
"version": "1.0.0",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}
- scripts: 定义了启动、构建、测试和弹出配置的命令。
- dependencies: 列出了项目依赖的包。
- browserslist: 指定了项目支持的浏览器版本。
react-practice《React实战:设计模式和最佳实践》源代码项目地址:https://gitcode.com/gh_mirrors/re/react-practice