React
1.1、React简介
是什么 ?:a declarative, efficient, and flexible JavaScript library for building user interfaces.
开发语言:JavaScript
官方主页:https://reactjs.org
源码仓库:https://github.com/facebook/react
1.2、使用create-react-app创建React项目

create-react-appFacebook提供的帮您快速的生成React应用的骨架的命令行工具。 里面包括典型React应用的基础依赖、最佳实践、开发环境的各种工具、能直接修改运行的测试文件、工具, 帮你构建源代码以便发布到生产环境的脚本。

step1、通过包管理器安装create-react-app

包管理器安装命令
npmnpm install create-react-app -g
yarnyarn 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