赞
踩
npx create-react-app 项目名
注意:项目名不能带大写字符
项目目录结构如下:
react-app ├─ node_modules ├─ public ├─ favicon.ico ├─ index.html ├─ logo192.png ├─ logo512.png ├─ manifest.json ├─ robots.txt ├─ src ├─ App.css ├─ App.js ├─ App.test.js ├─ index.css ├─ index.js ├─ logo.svg ├─ reportWebVitals.js ├─ setupTests.js ├─ package.json
node的包目录,没啥可说的
public用来存放首页模板及静态资源,该目录中除了index.html都可以删除
index.html
源码目录
package.json没有什么特别之处,和我们之前手动创建项目相比,多了几个命令和包:
"dependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
总的来说,除了public/index.html和src/index.js必须保留外,其他的东西都是可以删除的,使用create-react-app创建React项目后,我们还要再根据自己的需要对项目的结构和代码进行修改。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。