React (software)
React.js logo | |
Developer(s) | Facebook, Instagram and community |
---|---|
Initial release | 2013 |
Stable release | 0.12.2
/ December 30, 2014 |
Repository | |
Written in | JavaScript |
Platform | Cross-platform |
Size | 128 KiB production 559 KiB development |
Type | JavaScript library |
License | BSD License + Patents Clause |
Website | reactjs |
React, sometimes styled React.js or ReactJS, is an open-source JavaScript library for creating user interfaces that aims to address challenges encountered in developing single-page applications. It is maintained by Facebook, Instagram and a community of individual developers and corporations.[1][2][3]
React is intended to help developers build large applications that use data that changes over time. Its goal is to be simple, declarative and composable. React only handles the user interface in an app; it is considered to only be the view in the model–view–controller (MVC) software pattern, and can be used in conjunction with other JavaScript libraries or larger MVC frameworks such as AngularJS. It can also be used with React-based add-ons that take care of the non-UI parts of building a web application.
According to JavaScript analytics service, Libscore, React is currently being used on the homepages of Imgur, Bleacher Report, Feedly, Airbnb, SeatGeek, HelloSign, and others.[4]
Features
Virtual DOM
React maintains a virtual DOM of its own, rather than relying solely on the browser's DOM. This allows the library to determine which parts of the DOM have changed by diffing the new version with the stored virtual DOM, and using the result to determine how to efficiently update the browser's DOM.[5][6]
External links
- List of React resources – AwesomeReact
- Using Webcomponents with React – Maple.js
References
- ^ "React: Making faster, smoother UIs for data-driven Web apps". InfoWorld.
- ^ "Facebook's React JavaScript User Interfaces Library Receives Mixed Reviews". InfoQ.
- ^ "JavaScript's History and How it Led To ReactJS". The New Stack.
- ^ http://libscore.com/#React
- ^ "An Introduction to React.js". Instrument.
- ^ "Working With the Browser". React.