React是一个用于构建用户界面的JS库,主要用来写HTML页面或者构建Web应用,起源于Facebook的内部项目,后来又用来架设Instagram网站,并于2013年5月开源。如果从MVC的角度来看,React仅仅是视图层,即只负责视图的渲染,而并非提供了完整的M和C的功能。React具有如下特点:
- 声明式:只需用JSX描述UI(HTML)是什么样,React负责渲染UI,并在数据变化时更新UI。
- 基于组件:组件是React最重要的内容,表示页面中的部分内容,组合、复用多个组件,可以实现完整的页面功能。
- 应用广泛:web、移动端、vr应用……
相关博文:
1 Node.js项目常用命令
npm start # Starts the development server.
npm run build # Bundles the app into static files for production.
npm test # Starts the test runner.
npm run eject # Removes this tool and copies build dependencies, configuration files and scripts into the app directory. If you do this, you can’t go back!