是什么 ? | : | a declarative, efficient, and flexible JavaScript library for building user interfaces. |
开发语言 | : | JavaScript |
官方主页 | : | https://reactjs.org |
源码仓库 | : | https://github.com/facebook/react |
create-react-app
是Facebook提供的帮您快速的生成React
应用的骨架的命令行工具。 里面包括典型React
应用的基础依赖、最佳实践、开发环境的各种工具、能直接修改运行的测试文件、工具, 帮你构建源代码以便发布到生产环境的脚本。
step1、通过包管理器
安装create-react-app
包管理器 | 安装命令 |
---|---|
npm | npm install create-react-app -g |
yarn | yarn global add create-react-app |
create-react-app
命令的使用格式:
create-react-app <projectPath>
生成的项目骨架如下:
react-project
├── README.md
├── package.json
├── node_modules
│ ├── …
│ └── …
├── public
│ ├── favicon.ico
│ └── index.html
└── src
├── App.css
├── App.js
├── App.test.js
├── index.css
├── index.js
└── logo.svg