This page allows you to examine the variables generated by the Edit Filter for an individual change.

Variables generated for this change

VariableValue
Edit count of the user (user_editcount)
null
Name of the user account (user_name)
'46.222.107.199'
Age of the user account (user_age)
0
Groups (including implicit) the user is in (user_groups)
[ 0 => '*' ]
Rights that the user has (user_rights)
[ 0 => 'createaccount', 1 => 'read', 2 => 'edit', 3 => 'createtalk', 4 => 'writeapi', 5 => 'viewmywatchlist', 6 => 'editmywatchlist', 7 => 'viewmyprivateinfo', 8 => 'editmyprivateinfo', 9 => 'editmyoptions', 10 => 'abusefilter-log-detail', 11 => 'urlshortener-create-url', 12 => 'centralauth-merge', 13 => 'abusefilter-view', 14 => 'abusefilter-log', 15 => 'vipsscaler-test' ]
Whether the user is editing from mobile app (user_app)
false
Whether or not a user is editing through the mobile interface (user_mobile)
true
Page ID (page_id)
44926137
Page namespace (page_namespace)
0
Page title without namespace (page_title)
'React (JavaScript library)'
Full page title (page_prefixedtitle)
'React (JavaScript library)'
Edit protection level of the page (page_restrictions_edit)
[]
Last ten users to contribute to the page (page_recent_contributors)
[ 0 => 'Jrovc', 1 => 'Wasianpower', 2 => '64.188.176.177', 3 => 'Kolstadmagnus', 4 => '180.252.161.102', 5 => '103.238.107.160', 6 => 'AAGARCIGA', 7 => 'Apparition11', 8 => 'Samjoshusa', 9 => '46.185.139.25' ]
Page age in seconds (page_age)
239528326
Action (action)
'edit'
Edit summary/reason (summary)
'quit'
Old content model (old_content_model)
'wikitext'
New content model (new_content_model)
'wikitext'
Old page wikitext, before the edit (old_wikitext)
'{{For|the open-source mobile application framework|React Native}} {{Short description|JavaScript library for building user interfaces}} {{Infobox software | name = React | logo = React-icon.svg | author = Jordan Walke | developer = [[Meta Platforms|Meta]] and community | released = {{Start date and age|2013|5|29}}<ref name="initialrelease">{{cite web|access-date=22 Oct 2018|first1=Tom|first2=Jordan|last1=Occhino|last2=Walke|title=JS Apps at Facebook|url=https://www.youtube.com/watch?v=GW0rj4sNH2w|website=YouTube}}</ref> | latest release version = {{wikidata|property|reference|edit|P348}} | latest release date = {{start date and age| {{wikidata|qualifier|P348|P577}} }} | latest preview version = | latest preview date = <!-- {{Start date and age|2016|04|7}}<ref name="ghrelease"/> --> | programming language = [[JavaScript]] | platform = [[Web platform]] | genre = [[JavaScript library]] | license = [[MIT License]] }} '''React''' (also known as '''React.js''' or '''ReactJS''') is a [[Free and open-source software|free and open-source]] [[Front end and back end|front-end]] [[JavaScript library]]<ref name="react">{{Cite web |title=React - A JavaScript library for building user interfaces. |url=https://reactjs.org |url-status=live |access-date=7 April 2018 |website=reactjs.org |language=en-US}}</ref> for building [[user interfaces]] based on UI components. It is maintained by [[Meta Platforms|Meta]] (formerly Facebook) and a community of individual developers and companies.<ref>{{cite web |last=Krill |first=Paul |date=May 15, 2014 |title=React: Making faster, smoother UIs for data-driven Web apps |url=https://www.infoworld.com/article/2608181/javascript/react--making-faster--smoother-uis-for-data-driven-web-apps.html |url-status=live |access-date=2021-02-23 |website=[[InfoWorld]]}}</ref><ref>{{cite web |last=Hemel |first=Zef |date=June 3, 2013 |title=Facebook's React JavaScript User Interfaces Library Receives Mixed Reviews |url=https://www.infoq.com/news/2013/06/facebook-react |url-status=live |access-date=2022-01-11 |website=infoq.com |language=en-US}}</ref><ref>{{cite web |last=Dawson |first=Chris |date=July 25, 2014 |title=JavaScript's History and How it Led To ReactJS |url=https://thenewstack.io/javascripts-history-and-how-it-led-to-reactjs/ |url-status=live |access-date=2020-07-19 |website=The New Stack |language=en-US}}</ref> React can be used as a base in the development of [[single-page application|single-page]], mobile, or server-rendered applications with frameworks like [[Next.js]]. However, React is only concerned with state management and rendering that state to the [[Document Object Model|DOM]], so creating React applications usually requires the use of additional libraries for routing, as well as certain client-side functionality.<ref>{{Cite news |last=Dere |first=Mohan |date=2018-02-19 |title=How to integrate create-react-app with all the libraries you need to make a great app |language=en-US |work=freeCodeCamp |url=https://medium.freecodecamp.org/integrating-create-react-app-redux-react-router-redux-observable-bootstrap-altogether-216db97e89a3 |url-status=live |access-date=2018-06-14}}</ref><ref>{{Cite news |last=Panchal |first=Krunal |date=2018-02-19 |title=Angular vs React Detailed Comparison |language=en-US |work=Groovy Web |url=https://www.groovyweb.co/blog/angular-vs-react-detail-comparison |url-status=live |access-date=2022-04-25}}</ref> ==Basic usage== The following is a rudimentary example of React usage for the web written in [[React (JavaScript library)#JSX|JSX]] and JavaScript. <syntaxhighlight lang="javascript" line="1"> import React from 'react'; import ReactDOM from 'react-dom/client'; const Greeting = () => { return ( <div className="hello-world"> <h1>Hello, world!</h1> </div> ); }; const App = () => { return <Greeting />; }; const root = ReactDOM.createRoot(document.getElementById('root')); root.render( <React.StrictMode> <App /> </React.StrictMode> ); </syntaxhighlight> based on [[HTML]] document below. <syntaxhighlight lang="HTML" line="1> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>React App</title> </head> <body> <noscript>You need to enable JavaScript to run this app.</noscript> <div id="root"></div> </body> </html> </syntaxhighlight> The <code>Greeting</code> function is a React component that displays the famous introductory <nowiki>''</nowiki>Hello, world". When displayed in a web browser, the result will be a rendering of: <syntaxhighlight lang="html"> <div class="hello-world"> <h1>Hello, world!</h1> </div> </syntaxhighlight> ==Notable features== {{Manual|date=September 2021}} ===Declarative=== React adheres to the [[declarative programming]] paradigm. Developers design views for each state of an application, and React updates and renders components when data changes. This is in contrast with [[imperative programming]].<ref name="schwarzmüller">{{cite web |last1=Schwarzmüller |first1=Max |date=2018-05-01 |title=React - The Complete Guide |url=https://www.oreilly.com/library/view/react-the/9781789132229/ |url-status=live |access-date=19 February 2022 |website=[[O'Reilly Media|O'Reilly]] |publisher=[[Packt Publishing]] |language=en-US}}</ref> ===Components=== React code is made of entities called [[Component-based software engineering|components]]. These components are reusable and must be formed in the SRC folder following the Pascal Case as its naming convention (capitalize camelCase). Components can be rendered to a particular element in the [[Document Object Model|DOM]] using the React DOM library. When rendering a component, one can pass the values between components through "props":<ref>{{cite web |title=Components and Props |url=https://reactjs.org/docs/components-and-props.html#props-are-read-only |url-status=live |access-date=7 April 2018 |website=React |publisher=Facebook}}</ref> <syntaxhighlight lang="javascript"> import React from "react"; import Tool from "./Tool"; const Example = () => { return ( <> <div className="app"> <Tool name="Gulshan" /> </div> </> ); }; export default Example; </syntaxhighlight> In the above example, the <code>name</code> property with the value "Gulshan" has been passed from the <code>Example</code> component to the <code>Tool</code> component. Also the <code>return</code> section is wrapped in a tag because there is a limitation in the <code>return</code> function, it can only return a single value. So all JSX elements and components are bound into a single tag. The two primary ways of declaring components in React are through function components and class-based components. <DIV> <DIV> === Functional components === Function components are declared with a function that then returns some JSX. <syntaxhighlight lang="js"> const Greeter = () => <div>Hello World</div>; </syntaxhighlight> === Class-based components === Class-based components are declared using [[ECMAScript|ES6]] classes. <syntaxhighlight lang="js"> class ParentComponent extends React.Component { state = { color: 'green' }; render() { return ( <ChildComponent color={this.state.color} /> ); } } </syntaxhighlight>Where class components are all about the use of classes and the lifecycle methods, functional components have hooks to deal with state management and other problems which arise when writing code in React. ===Virtual DOM=== Another notable feature is the use of a virtual [[Document Object Model]], or virtual DOM. React creates an [[In-memory processing|in-memory]] data-structure cache, computes the resulting differences, and then updates the browser's displayed DOM efficiently.<ref name="workingwiththebrowser">{{cite web |title=Refs and the DOM |url=https://reactjs.org/docs/refs-and-the-dom.html |url-status=live |access-date=2021-07-19 |website=React Blog}}</ref> This process is called '''reconciliation'''. This allows the programmer to write code as if the entire page is rendered on each change, while the React libraries only render subcomponents that actually change. This selective rendering provides a major performance boost.<ref name=":0">{{Cite web |title=React: The Virtual DOM |url=https://www.codecademy.com/articles/react-virtual-dom |url-status=live |access-date=2021-10-14 |website=Codecademy |language=en}}</ref> It saves the effort of recalculating the CSS style, layout for the page and rendering for the entire page.<ref name=":0" /> === Lifecycle methods === Lifecycle methods for class-based components use a form of [[hooking]] that allows the execution of code at set points during a component's lifetime. * <code>shouldComponentUpdate</code> allows the developer to prevent unnecessary re-rendering of a component by returning false if a render is not required. * <code>componentDidMount</code> is called once the component has "mounted" (the component has been created in the user interface, often by associating it with a [[Document Object Model|DOM]] node). This is commonly used to trigger data loading from a remote source via an [[API]]. *<code>componentWillUnmount</code> is called immediately before the component is torn down or "unmounted". This is commonly used to clear resource-demanding dependencies to the component that will not simply be removed with the unmounting of the component (e.g., removing any <code>setInterval()</code> instances that are related to the component, or an "[[Event (computing)|eventListener]]" set on the "document" because of the presence of the component) * <code>render</code> is the most important lifecycle method and the only required one in any component. It is usually called every time the component's state is updated, which should be reflected in the user interface. ===JSX=== {{Main|JSX (JavaScript)|l1=JSX}} [[JSX (JavaScript)|JSX]], or JavaScript Syntax Extension, is an extension to the JavaScript language syntax.<ref>{{cite web |date=2022-03-08 |title=Draft: JSX Specification |url=https://facebook.github.io/jsx/ |url-status=live |access-date=7 April 2018 |website=JSX |publisher=Facebook |language=en-US}}</ref> Similar in appearance to HTML, JSX provides a way to structure component rendering using syntax familiar to many developers. React components are typically written using JSX, although they do not have to be (components may also be written in pure JavaScript). JSX is similar to another extension syntax created by Facebook for [[PHP]] called [[XHP]]. An example of JSX code: <syntaxhighlight lang="dart"> class App extends React.Component { render() { return ( <div> <p>Header</p> <p>Content</p> <p>Footer</p> </div> ); } } </syntaxhighlight> ===Architecture beyond HTML=== The basic architecture of React applies beyond rendering HTML in the browser. For example, Facebook has dynamic charts that render to <code><nowiki><canvas></nowiki></code> tags,<ref>{{cite web |last=Hunt |first=Pete |date=2013-06-05 |title=Why did we build React? – React Blog |url=https://facebook.github.io/react/blog/2013/06/05/why-react.html |url-status=live |access-date=2022-02-17 |website=reactjs.org |language=en-US}}</ref> and Netflix and [[PayPal]] use universal loading to render identical HTML on both the server and client.<ref name="paypal-isomorphic-reactjs">{{cite web |date=2015-04-27 |title=PayPal Isomorphic React |url=https://medium.com/paypal-engineering/isomorphic-react-apps-with-react-engine-17dae662379c |url-status=live |archive-url=https://web.archive.org/web/20190208124143/https://www.paypal-engineering.com/2015/04/27/isomorphic-react-apps-with-react-engine/ |archive-date=2019-02-08 |access-date=2019-02-08 |website=medium.com}}</ref><ref name="netflix-isomorphic-reactjs">{{cite web |date=2015-01-28 |title=Netflix Isomorphic React |url=http://techblog.netflix.com/2015/01/netflix-likes-react.html |url-status=live |access-date=2022-02-14 |website=netflixtechblog.com |language=en-US}}</ref> === React hooks === Hooks are functions that let developers "hook into" React state and lifecycle features from function components.<ref>{{Cite web|url=https://reactjs.org/docs/hooks-overview.html|title=Hooks at a Glance – React|website=reactjs.org|language=en|access-date=2019-08-08}}</ref> Hooks do not work inside classes — they let you use React without classes.<ref>{{Cite web|url=https://blog.soshace.com/what-the-heck-is-react-hooks/|title=What the Heck is React Hooks?|date=2020-01-16|website=Soshace|language=en|access-date=2020-01-24}}</ref> React provides a few built-in hooks like <code>useState</code>,<ref>{{Cite web|url=https://reactjs.org/docs/hooks-state.html|title=Using the State Hook – React|website=reactjs.org|language=en|access-date=2020-01-24}}</ref> <code>useContext</code>, <code>useReducer</code> , <code>useMemo</code> and <code>useEffect</code>.<ref>{{Cite web|url=https://reactjs.org/docs/hooks-effect.html|title=Using the Effect Hook – React|website=reactjs.org|language=en|access-date=2020-01-24}}</ref> Others are documented in the Hooks API Reference.<ref>{{Cite web|url=https://reactjs.org/docs/hooks-reference.html|title=Hooks API Reference – React|website=reactjs.org|language=en|access-date=2020-01-24}}</ref> <code>useState</code> and <code>useEffect</code>, which are the most commonly used, are for controlling state and side effects respectively. ==== Rules of hooks ==== There are rules of hooks<ref>{{Cite web|url=https://reactjs.org/docs/hooks-rules.html|title=Rules of Hooks – React|website=reactjs.org|language=en|access-date=2020-01-24}}</ref> which describe the characteristic code pattern that hooks rely on. It is the modern way to handle state with React. # Hooks should only be called at the top level (not inside loops or if statements). # Hooks should only be called from React function components and custom hooks, not normal functions or class components. Although these rules can't be enforced at runtime, code analysis tools such as [[Lint (software)|linters]] can be configured to detect many mistakes during development. The rules apply to both usage of hooks and the implementation of custom hooks,<ref>{{Cite web|url=https://reactjs.org/docs/hooks-custom.html|title=Building Your Own Hooks – React|website=reactjs.org|language=en|access-date=2020-01-24}}</ref> which may call other hooks. ==Common idioms== React does not attempt to provide a complete "application library". It is designed specifically for building user interfaces<ref name="react" /> and therefore does not include many of the tools some developers might consider necessary to build an application. This allows the choice of whichever libraries the developer prefers to accomplish tasks such as performing network access or local data storage. Common patterns of usage have emerged as the library matures. ===Unidirectional data flow=== To support React's concept of unidirectional data flow (which might be contrasted with [[AngularJS]]'s bidirectional flow), the Flux architecture was developed as an alternative to the popular [[model–view–controller]] architecture. Flux features ''actions'' which are sent through a central ''dispatcher'' to a ''store'', and changes to the store are propagated back to the view.<ref name="flux">{{cite web|url=https://facebook.github.io/flux/docs/in-depth-overview|title=In Depth OverView|publisher=Facebook|access-date=7 April 2018|website=Flux}}</ref> When used with React, this propagation is accomplished through component properties. Since its conception, Flux has been superseded by libraries such as [[Redux (JavaScript library)|Redux]] and MobX.<ref>{{cite web|title=Flux Release 4.0|url=https://github.com/facebook/flux/releases/tag/4.0.0|website=Github|access-date=26 February 2021}}</ref> Flux can be considered a variant of the [[observer pattern]].<ref>{{cite web|last1=Johnson|first1=Nicholas|title=Introduction to Flux - React Exercise|url=http://nicholasjohnson.com/react/course/exercises/flux/|website=Nicholas Johnson|access-date=7 April 2018}}</ref> A React component under the Flux architecture should not directly modify any props passed to it, but should be passed callback functions that create ''actions'' which are sent by the dispatcher to modify the store. The action is an object whose responsibility is to describe what has taken place: for example, an action describing one user "following" another might contain a user id, a target user id, and the type <code>USER_FOLLOWED_ANOTHER_USER</code>.<ref>{{cite web|last1=Abramov|first1=Dan|title=The History of React and Flux with Dan Abramov|url=http://threedevsandamaybe.com/the-history-of-react-and-flux-with-dan-abramov/|website=Three Devs and a Maybe|access-date=7 April 2018}}</ref> The stores, which can be thought of as models, can alter themselves in response to actions received from the dispatcher. This pattern is sometimes expressed as "properties flow down, actions flow up". Many implementations of Flux have been created since its inception, perhaps the most well-known being [[Redux (JavaScript library)|Redux]], which features a single store, often called a [[single source of truth]].<ref>{{cite web|title=State Management Tools - Results|url=http://2016.stateofjs.com/2016/statemanagement/|website=The State of JavaScript|access-date=29 October 2021}}</ref> ==Future development== Project status can be tracked via the core team discussion forum.<ref>{{Cite web|title = Meeting Notes|url = https://discuss.reactjs.org/c/meeting-notes|website = React Discuss|access-date = 2015-12-13}}</ref> However, major changes to React go through the Future of React repository issues and [[pull request]]s.<ref>{{Cite web|title = reactjs/react-future - The Future of React|url = https://github.com/reactjs/react-future|website = GitHub|access-date = 2015-12-13}}</ref><ref>{{Cite web|title = facebook/react - Feature request issues|url = https://github.com/facebook/react/labels/Type:%20Feature%20Request|website = GitHub|access-date = 2015-12-13}}</ref> This enables the React community to provide feedback on new potential features, experimental APIs and JavaScript syntax improvements. ==History== React was created by Jordan Walke, a software engineer at Facebook, who released an early prototype of React called "FaxJS".<ref>{{cite web |last1=Walke |first1=Jordan |title=FaxJS |url=https://github.com/jordwalke/FaxJs |access-date=11 July 2019}}</ref><ref name="papp" /> He was influenced by [[XHP]], an [[HTML]] component library for [[PHP]]. It was first deployed on Facebook's [[News Feed]] in 2011 and later on [[Instagram]] in 2012.<ref>{{cite web|url=https://www.youtube.com/watch?v=A0Kj49z6WdM|title=Pete Hunt at TXJS}}</ref> It was open-sourced at JSConf US in May 2013.<ref name="papp">{{cite news |last1=Papp |first1=Andrea |title=The History of React.js on a Timeline |url=https://blog.risingstack.com/the-history-of-react-js-on-a-timeline/ |access-date=11 July 2019 |work=RisingStack |date=4 April 2018}}</ref> [[React Native]], which enables native [[Android (operating system)|Android]], [[iOS]], and [[Universal Windows Platform|UWP]] development with React, was announced at Facebook's React Conf in February 2015 and open-sourced in March 2015. On April 18, 2017, Facebook announced React Fiber, a new set of internal algorithms for rendering, as opposed to React's old rendering algorithm, Stack.<ref>{{Cite news|url=https://techcrunch.com/2017/04/18/facebook-announces-react-fiber-a-rewrite-of-its-react-framework/|title=Facebook announces React Fiber, a rewrite of its React library|publisher=TechCrunch|first=Frederic|last=Lardinois|date=18 April 2017|access-date=19 April 2017}}</ref> React Fiber was to become the foundation of any future improvements and feature development of the React library.<ref>{{cite web|title = React Fiber Architecture|url = https://github.com/acdlite/react-fiber-architecture| website=Github|access-date = 19 April 2017}}</ref>{{Update inline|reason=Last commit was in 2016. Is this statement still true?|date=June 2018}} The actual syntax for programming with React does not change; only the way that the syntax is executed has changed.<ref name="techcrunch">{{cite web|url=https://techcrunch.com/2017/04/18/facebook-announces-react-fiber-a-rewrite-of-its-react-framework/|title=Facebook announces React Fiber, a rewrite of its React framework|website=TechCrunch|accessdate=2018-10-19}}</ref> React's old rendering system, Stack, was developed at a time when the focus of the system on dynamic change was not understood. Stack was slow to draw complex animation, for example, trying to accomplish all of it in one chunk. Fiber breaks down animation into segments that can be spread out over multiple frames. Likewise, the structure of a page can be broken into segments that may be maintained and updated separately. JavaScript functions and virtual [[Document Object Model|DOM]] objects are called "fibers", and each can be operated and updated separately, allowing for smoother on-screen rendering.<ref name="github">{{cite web|url=https://github.com/acdlite/react-fiber-architecture|title=GitHub - acdlite/react-fiber-architecture: A description of React's new core algorithm, React Fiber|website=github.com|accessdate=2018-10-19}}</ref> On September 26, 2017, React 16.0 was released to the public.<ref>{{cite web |url=https://reactjs.org/blog/2017/09/26/react-v16.0.html |title=React v16.0 |publisher=react.js |date=2017-09-26 |access-date=2019-05-20 }}</ref> On February 16, 2019, React 16.8 was released to the public.<ref>{{cite web |url=https://reactjs.org/blog/2017/09/26/react-v16.0.html |title=React v16.8 |publisher=react.js |date=2019-02-16 |access-date=2019-05-20 }}</ref> The release introduced React Hooks.<ref>{{cite web |url=https://reactjs.org/docs/hooks-intro.html |title=Introducing Hooks |publisher=react.js |access-date=2019-05-20 }}</ref> On August 10, 2020, the React team announced the first release candidate for React v17.0, notable as the first major release without major changes to the React developer-facing API.<ref>url=https://reactjs.org/blog/2020/08/10/react-v17-rc.html</ref> {| class="wikitable" |+Versions |- style="position:sticky; top:0" !Version !Release Date !Changes |- |0.3.0 |29 May 2013 |Initial Public Release |- |0.4.0 |20 July 2013 |Support for comment nodes {{tag|div|content={{mset|/* */}}}}, Improved server-side rendering APIs, Removed React.autoBind, Support for the key prop, Improvements to forms, Fixed bugs. |- |0.5.0 |20 October 2013 |Improve Memory usage, Support for Selection and Composition events, Support for getInitialState and getDefaultProps in mixins, Added React.version and React.isValidClass, Improved compatibility for Windows. |- |0.8.0 |20 December 2013 |Added support for rows & cols, defer & async, loop for {{tag|audio|o}} & {{tag|video|o}}, autoCorrect attributes. Added onContextMenu events, Upgraded jstransform and esprima-fb tools, Upgraded browserify. |- |0.9.0 |20 February 2014 |Added support for crossOrigin, download and hrefLang, mediaGroup and muted, sandbox, seamless, and srcDoc, scope attributes, Added any, arrayOf, component, oneOfType, renderable, shape to React.PropTypes, Added support for onMouseOver and onMouseOut event, Added support for onLoad and onError on {{tag|img|o}} elements. |- |0.10.0 |21 March 2014 |Added support for srcSet and textAnchor attributes, add update function for immutable data, Ensure all void elements don't insert a closing tag. |- |0.11.0 |17 July 2014 |Improved SVG support, Normalized e.view event, Update $apply command, Added support for namespaces, Added new transformWithDetails API, includes pre-built packages under dist/, MyComponent() now returns a descriptor, not an instance. |- |0.12.0 |21 November 2014 |Added new features Spread operator ({...}) introduced to deprecate this.transferPropsTo, Added support for acceptCharset, classID, manifest HTML attributes, React.addons.batchedUpdates added to API, @jsx React.DOM no longer required, Fixed issues with CSS Transitions. |- |0.13.0 |10 March 2015 |Deprecated patterns that warned in 0.12 no longer work, ref resolution order has changed, Removed properties this._pendingState and this._rootNodeID, Support ES6 classes, Added API React.findDOMNode(component), Support for iterators and immutable-js sequences, Added new features React.addons.createFragment, deprecated React.addons.classSet. |- |0.14.1 |29 October 2015 |Added support for srcLang, default, kind attributes, and color attribute, Ensured legacy .props access on DOM nodes, Fixed scryRenderedDOMComponentsWithClass, Added react-dom.js. |- |15.0.0 |7 April 2016 |Initial render now uses document.createElement instead of generating HTML, No more extra {{tag|span|o}}s, Improved SVG support, {{code|ReactPerf.getLastMeasurements()}} is opaque, New deprecations introduced with a warning, Fixed multiple small memory leaks, React DOM now supports the cite and profile HTML attributes and cssFloat, gridRow and gridColumn CSS properties. |- |15.1.0 |20 May 2016 |Fix a batching bug, Ensure use of the latest object-assign, Fix regression, Remove use of merge utility, Renamed some modules. |- |15.2.0 |1 July 2016 |Include component stack information, Stop validating props at mount time, Add React.PropTypes.symbol, Add onLoad handling to {{tag|link|o}} and onError handling to {{tag|source|o}} element, Add {{code|isRunning()}} API, Fix performance regression. |- |15.3.0 |30 July 2016 |Add React.PureComponent, Fix issue with nested server rendering, Add xmlns, xmlnsXlink to support SVG attributes and referrerPolicy to HTML attributes, updates React Perf Add-on, Fixed issue with ref. |- |15.3.1 |19 August 2016 |Improve performance of development builds, Cleanup internal hooks, Upgrade fbjs, Improve startup time of React, Fix memory leak in server rendering, fix React Test Renderer, Change trackedTouchCount invariant into a console.error. |- |15.4.0 |16 November 2016 |React package and browser build no longer includes React DOM, Improved development performance, Fixed occasional test failures, update batchedUpdates API, React Perf, and {{code|ReactTestRenderer.create()}}. |- |15.4.1 |23 November 2016 |Restructure variable assignment, Fixed event handling, Fixed compatibility of browser build with AMD environments. |- |15.4.2 |6 January 2017 |Fixed build issues, Added missing package dependencies, Improved error messages. |- |15.5.0 |7 April 2017 |Added react-dom/test-utils, Removed peerDependencies, Fixed issue with Closure Compiler, Added a deprecation warning for React.createClass and React.PropTypes, Fixed Chrome bug. |- |15.5.4 |11 April 2017 |Fix compatibility with Enzyme by exposing batchedUpdates on shallow renderer, Update version of prop-types, Fix react-addons-create-fragment package to include loose-envify transform. |- |15.6.0 |13 June 2017 |Add support for CSS variables in style attribute and Grid style properties, Fix AMD support for addons depending on react, Remove unnecessary dependency, Add a deprecation warning for React.createClass and React.DOM factory helpers. |- |16.0.0 |26 September 2017 |Improved error handling with introduction of "error boundaries", React DOM allows passing non-standard attributes, Minor changes to setState behavior, remove react-with-addons.js build, Add React.createClass as create-react-class, React.PropTypes as prop-types, React.DOM as react-dom-factories, changes to the behavior of scheduling and lifecycle methods. |- |16.1.0 |9 November 2017 |Discontinuing Bower Releases, Fix an accidental extra global variable in the UMD builds, Fix onMouseEnter and onMouseLeave firing, Fix <textarea> placeholder, Remove unused code, Add a missing package.json dependency, Add support for React DevTools. |- |16.3.0 |29 March 2018 |Add a new officially supported context API, Add new packagePrevent an infinite loop when attempting to render portals with SSR, Fix an issue with this.state, Fix an IE/Edge issue. |- |16.3.1 |3 April 2018 |Prefix private API, Fix performance regression and error handling bugs in development mode, Add peer dependency, Fix a false positive warning in IE11 when using Fragment. |- |16.3.2 |16 April 2018 |Fix an IE crash, Fix labels in User Timing measurements, Add a UMD build, Improve performance of unstable_observedBits API with nesting. |- |16.4.0 |24 May 2018 |Add support for Pointer Events specification, Add the ability to specify propTypes, Fix reading context, Fix the {{code|getDerivedStateFromProps()}} support, Fix a testInstance.parent crash, Add React.unstable_Profiler component for measuring performance, Change internal event names. |- |16.5.0 |5 September 2018 |Add support for React DevTools Profiler, Handle errors in more edge cases gracefully, Add react-dom/profiling, Add onAuxClick event for browsers, Add movementX and movementY fields to mouse events, Add tangentialPressure and twist fields to pointer event. |- |16.6.0 |23 October 2018 |Add support for contextType, Support priority levels, continuations, and wrapped callbacks, Improve the fallback mechanism, Fix gray overlay on iOS Safari, Add {{code|React.lazy()}} for code splitting components. |- |16.7.0 |20 December 2018 |Fix performance of React.lazy for lazily-loaded components, Clear fields on unmount to avoid memory leaks, Fix bug with SSR, Fix a performance regression. |- |16.8.0 |6 February 2019 |Add Hooks, Add {{code|ReactTestRenderer.act()}} and {{code|ReactTestUtils.act()}} for batching updates, Support synchronous thenables passed to React.lazy(), Improve useReducer Hook lazy initialization API. |- |16.8.6 |27 March 2019 |Fix an incorrect bailout in useReducer(), Fix iframe warnings in Safari DevTools, Warn if contextType is set to Context.Consumer instead of Context, Warn if contextType is set to invalid values. |- |16.9.0 |9 August 2019 |Add {{mono|React.Profiler}} API for gathering performance measurements programmatically. Remove unstable_ConcurrentMode in favor of unstable_createRoot |- |16.10.0 |27 September 2019 |Fix edge case where a hook update wasn't being memoized. Fix heuristic for determining when to hydrate, so we don't incorrectly hydrate during an update. Clear additional fiber fields during unmount to save memory. Fix bug with required text fields in Firefox. Prefer Object.is instead of inline polyfill, when available. Fix bug when mixing Suspense and error handling. |- |16.10.1 |28 September 2019 |Fix regression in Next.js apps by allowing Suspense mismatch during hydration to silently proceed |- |16.10.2 |3 October 2019 |Fix regression in react-native-web by restoring order of arguments in event plugin extractors |- |16.11.0 |22 October 2019 |Fix mouseenter handlers from firing twice inside nested React containers. Remove unstable_createRoot and unstable_createSyncRoot experimental APIs. (These are available in the Experimental channel as createRoot and createSyncRoot.) |- |16.12.0 |14 November 2019 |React DOM - Fix passive effects (<code>useEffect</code>) not being fired in a multi-root app. React Is - Fix <code>lazy</code> and <code>memo</code> types considered elements instead of components |- |16.13.0 |26 February 2020 |Features added in React Concurrent mode. Fix regressions in React core library and React Dom. |- |16.13.1 |19 March 2020 |Fix bug in legacy mode Suspense. Revert warning for cross-component updates that happen inside class render lifecycles |- |16.14.0 |14 October 2020 |Add support for the new JSX transform. |- |17.0.0 |20 October 2020 |"No New Features" enables gradual React updates from older versions. Add new JSX Transform, Changes to Event Delegation |- |17.0.1 |22 October 2020 |React DOM - Fixes a crash in IE11 |- |17.0.2 |22 March 2021 |React DOM - Remove an unused dependency to address the <code>SharedArrayBuffer</code> cross-origin isolation warning. |- |18.0.0 |29 March 2022 |Concurrent React, Automatic batching, New Suspense Features, Transitions, Client and Server Rendering APIs, New Strict Mode Behaviors, New Hooks <ref>{{cite web|title=React v18.0|url=https://reactjs.org/blog/2022/03/29/react-v18.html|website=reactjs.org|language=en|access-date=2022-04-12}}</ref> |- |18.1.0 |26 April 2022 |Many fixes and performance improvements |- |18.1.2 |14 June 2022 |Many more fixes and performance improvements |} ==Licensing== The initial public release of React in May 2013 used the [[Apache License 2.0]]. In October 2014, React 0.12.0 replaced this with the [[BSD licenses#3-clause|3-clause BSD license]] and added a separate PATENTS text file that permits usage of any Facebook patents related to the software:<ref>{{cite web|title=React CHANGELOG.md|url=https://github.com/facebook/react/blob/master/CHANGELOG.md#0120-october-28-2014|website=GitHub}}</ref><blockquote>The license granted hereunder will terminate, automatically and without notice, for anyone that makes any claim (including by filing any lawsuit, assertion or other action) alleging (a) direct, indirect, or contributory infringement or inducement to infringe any patent: (i) by Facebook or any of its subsidiaries or affiliates, whether or not such claim is related to the Software, (ii) by any party if such claim arises in whole or in part from any software, product or service of Facebook or any of its subsidiaries or affiliates, whether or not such claim is related to the Software, or (iii) by any party relating to the Software; or (b) that any right in any patent claim of Facebook is invalid or unenforceable.</blockquote>This unconventional clause caused some controversy and debate in the React user community, because it could be interpreted to empower Facebook to revoke the license in many scenarios, for example, if Facebook sues the licensee prompting them to take "other action" by publishing the action on a blog or elsewhere. Many expressed concerns that Facebook could unfairly exploit the termination clause or that integrating React into a product might complicate a startup company's future acquisition.<ref>{{cite web|title=A compelling reason not to use ReactJS|first=Austin|last=Liu|url=https://medium.com/bits-and-pixels/a-compelling-reason-not-to-use-reactjs-beac24402f7b|website=Medium}}</ref> Based on community feedback, Facebook updated the patent grant in April 2015 to be less ambiguous and more permissive:<ref>{{cite web|title=Updating Our Open Source Patent Grant|url=https://code.facebook.com/posts/1639473982937255/updating-our-open-source-patent-grant/}}</ref> <blockquote>The license granted hereunder will terminate, automatically and without notice, if you (or any of your subsidiaries, corporate affiliates or agents) initiate directly or indirectly, or take a direct financial interest in, any Patent Assertion: (i) against Facebook or any of its subsidiaries or corporate affiliates, (ii) against any party if such Patent Assertion arises in whole or in part from any software, technology, product or service of Facebook or any of its subsidiaries or corporate affiliates, or (iii) against any party relating to the Software. [...] A "Patent Assertion" is any lawsuit or other action alleging direct, indirect, or contributory infringement or inducement to infringe any patent, including a cross-claim or counterclaim.<ref>{{cite web|title=Additional Grant of Patent Rights Version 2|url=https://github.com/facebook/react/blob/b8ba8c83f318b84e42933f6928f231dc0918f864/PATENTS|website=GitHub}}</ref></blockquote> The [[Apache Software Foundation]] considered this licensing arrangement to be incompatible with its licensing policies, as it "passes along risk to downstream consumers of our software imbalanced in favor of the licensor, not the licensee, thereby violating our Apache legal policy of being a universal donor", and "are not a subset of those found in the [Apache License 2.0], and they cannot be sublicensed as [Apache License 2.0]".<ref>{{Cite web|url=https://www.apache.org/legal/resolved.html|title=ASF Legal Previously Asked Questions|publisher=Apache Software Foundation|language=en|access-date=2017-07-16}}</ref> In August 2017, Facebook dismissed the Apache Foundation's downstream concerns and refused to reconsider their license.<ref>{{Cite web|url=https://code.facebook.com/posts/112130496157735/explaining-react-s-license/|title=Explaining React's License|website=Facebook|access-date=2017-08-18|language=en}}</ref><ref>{{Cite web|url=https://github.com/facebook/react/issues/10191#issuecomment-323486580|title=Consider re-licensing to AL v2.0, as RocksDB has just done|website=Github|language=en|access-date=2017-08-18}}</ref> The following month, [[WordPress]] decided to switch its Gutenberg and Calypso projects away from React.<ref>{{Cite web|url= https://techcrunch.com/2017/09/15/wordpress-to-ditch-react-library-over-facebook-patent-clause-risk/|title= WordPress to ditch React library over Facebook patent clause risk |website=TechCrunch|language=en|access-date=2017-09-16}}</ref> On September 23, 2017, Facebook announced that the following week, it would re-license Flow, [[Jest (JavaScript framework)|Jest]], React, and Immutable.js under a standard [[MIT License]]; the company stated that React was "the foundation of a broad ecosystem of open source software for the web", and that they did not want to "hold back forward progress for nontechnical reasons".<ref>{{Cite web|url= https://code.facebook.com/posts/300798627056246/relicensing-react-jest-flow-and-immutable-js/|title= Relicensing React, Jest, Flow, and Immutable.js |website=Facebook Code|language=en|date=2017-09-23}}</ref> On September 26, 2017, React 16.0.0 was released with the MIT license.<ref>{{cite web |url=https://reactjs.org/blog/2017/09/26/react-v16.0.html#mit-licensed|title= React v16.0§MIT licensed |last=Clark |first=Andrew |date=September 26, 2017 |website=React Blog}}</ref> The MIT license change has also been backported to the 15.x release line with React 15.6.2.<ref>{{cite web |url=https://reactjs.org/blog/2017/09/25/react-v15.6.2.html |title=React v15.6.2 |last=Hunzaker |first=Nathan |date=September 25, 2017 |website=React Blog}}</ref> ==See also== {{Portal|Free and open-source software}} *[[Angular (web framework)]] *[[Backbone.js]] *[[Ember.js]] *[[Gatsby (JavaScript framework)]] *[[Next.js]] *[[Svelte]] *[[Vue.js]] *[[Comparison of JavaScript libraries]] *[[Web Components]] ==References== {{Reflist|2}} 55.[https://www.websoptimization.com/blog/reason-to-choose-reactjs-for-your-next-project/ Reason to Choose ReactJS for Your Next Project] ==External links== * {{Official website}} {{JS templating |state=autocollapse}} {{Web frameworks}} {{ECMAScript}} {{Facebook navbox}} {{Authority control}} [[Category:2015 software]] [[Category:Ajax (programming)]] [[Category:Facebook software]] [[Category:JavaScript libraries]] [[Category:Software using the MIT license]] [[Category:Web applications]]'
New page wikitext, after the edit (new_wikitext)
'==Basic usage== The following is a rudimentary example of React usage for the web written in [[React (JavaScript library)#JSX|JSX]] and JavaScript. <syntaxhighlight lang="javascript" line="1"> import React from 'react'; import ReactDOM from 'react-dom/client'; const Greeting = () => { return ( <div className="hello-world"> <h1>Hello, world!</h1> </div> ); }; const App = () => { return <Greeting />; }; const root = ReactDOM.createRoot(document.getElementById('root')); root.render( <React.StrictMode> <App /> </React.StrictMode> ); </syntaxhighlight> based on [[HTML]] document below. <syntaxhighlight lang="HTML" line="1> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>React App</title> </head> <body> <noscript>You need to enable JavaScript to run this app.</noscript> <div id="root"></div> </body> </html> </syntaxhighlight> The <code>Greeting</code> function is a React component that displays the famous introductory <nowiki>''</nowiki>Hello, world". When displayed in a web browser, the result will be a rendering of: <syntaxhighlight lang="html"> <div class="hello-world"> <h1>Hello, world!</h1> </div> </syntaxhighlight> ==Notable features== {{Manual|date=September 2021}} ===Declarative=== React adheres to the [[declarative programming]] paradigm. Developers design views for each state of an application, and React updates and renders components when data changes. This is in contrast with [[imperative programming]].<ref name="schwarzmüller">{{cite web |last1=Schwarzmüller |first1=Max |date=2018-05-01 |title=React - The Complete Guide |url=https://www.oreilly.com/library/view/react-the/9781789132229/ |url-status=live |access-date=19 February 2022 |website=[[O'Reilly Media|O'Reilly]] |publisher=[[Packt Publishing]] |language=en-US}}</ref> ===Components=== React code is made of entities called [[Component-based software engineering|components]]. These components are reusable and must be formed in the SRC folder following the Pascal Case as its naming convention (capitalize camelCase). Components can be rendered to a particular element in the [[Document Object Model|DOM]] using the React DOM library. When rendering a component, one can pass the values between components through "props":<ref>{{cite web |title=Components and Props |url=https://reactjs.org/docs/components-and-props.html#props-are-read-only |url-status=live |access-date=7 April 2018 |website=React |publisher=Facebook}}</ref> <syntaxhighlight lang="javascript"> import React from "react"; import Tool from "./Tool"; const Example = () => { return ( <> <div className="app"> <Tool name="Gulshan" /> </div> </> ); }; export default Example; </syntaxhighlight> In the above example, the <code>name</code> property with the value "Gulshan" has been passed from the <code>Example</code> component to the <code>Tool</code> component. Also the <code>return</code> section is wrapped in a tag because there is a limitation in the <code>return</code> function, it can only return a single value. So all JSX elements and components are bound into a single tag. The two primary ways of declaring components in React are through function components and class-based components. <DIV> <DIV> === Functional components === Function components are declared with a function that then returns some JSX. <syntaxhighlight lang="js"> const Greeter = () => <div>Hello World</div>; </syntaxhighlight> === Class-based components === Class-based components are declared using [[ECMAScript|ES6]] classes. <syntaxhighlight lang="js"> class ParentComponent extends React.Component { state = { color: 'green' }; render() { return ( <ChildComponent color={this.state.color} /> ); } } </syntaxhighlight>Where class components are all about the use of classes and the lifecycle methods, functional components have hooks to deal with state management and other problems which arise when writing code in React. ===Virtual DOM=== Another notable feature is the use of a virtual [[Document Object Model]], or virtual DOM. React creates an [[In-memory processing|in-memory]] data-structure cache, computes the resulting differences, and then updates the browser's displayed DOM efficiently.<ref name="workingwiththebrowser">{{cite web |title=Refs and the DOM |url=https://reactjs.org/docs/refs-and-the-dom.html |url-status=live |access-date=2021-07-19 |website=React Blog}}</ref> This process is called '''reconciliation'''. This allows the programmer to write code as if the entire page is rendered on each change, while the React libraries only render subcomponents that actually change. This selective rendering provides a major performance boost.<ref name=":0">{{Cite web |title=React: The Virtual DOM |url=https://www.codecademy.com/articles/react-virtual-dom |url-status=live |access-date=2021-10-14 |website=Codecademy |language=en}}</ref> It saves the effort of recalculating the CSS style, layout for the page and rendering for the entire page.<ref name=":0" /> === Lifecycle methods === Lifecycle methods for class-based components use a form of [[hooking]] that allows the execution of code at set points during a component's lifetime. * <code>shouldComponentUpdate</code> allows the developer to prevent unnecessary re-rendering of a component by returning false if a render is not required. * <code>componentDidMount</code> is called once the component has "mounted" (the component has been created in the user interface, often by associating it with a [[Document Object Model|DOM]] node). This is commonly used to trigger data loading from a remote source via an [[API]]. *<code>componentWillUnmount</code> is called immediately before the component is torn down or "unmounted". This is commonly used to clear resource-demanding dependencies to the component that will not simply be removed with the unmounting of the component (e.g., removing any <code>setInterval()</code> instances that are related to the component, or an "[[Event (computing)|eventListener]]" set on the "document" because of the presence of the component) * <code>render</code> is the most important lifecycle method and the only required one in any component. It is usually called every time the component's state is updated, which should be reflected in the user interface. ===JSX=== {{Main|JSX (JavaScript)|l1=JSX}} [[JSX (JavaScript)|JSX]], or JavaScript Syntax Extension, is an extension to the JavaScript language syntax.<ref>{{cite web |date=2022-03-08 |title=Draft: JSX Specification |url=https://facebook.github.io/jsx/ |url-status=live |access-date=7 April 2018 |website=JSX |publisher=Facebook |language=en-US}}</ref> Similar in appearance to HTML, JSX provides a way to structure component rendering using syntax familiar to many developers. React components are typically written using JSX, although they do not have to be (components may also be written in pure JavaScript). JSX is similar to another extension syntax created by Facebook for [[PHP]] called [[XHP]]. An example of JSX code: <syntaxhighlight lang="dart"> class App extends React.Component { render() { return ( <div> <p>Header</p> <p>Content</p> <p>Footer</p> </div> ); } } </syntaxhighlight> ===Architecture beyond HTML=== The basic architecture of React applies beyond rendering HTML in the browser. For example, Facebook has dynamic charts that render to <code><nowiki><canvas></nowiki></code> tags,<ref>{{cite web |last=Hunt |first=Pete |date=2013-06-05 |title=Why did we build React? – React Blog |url=https://facebook.github.io/react/blog/2013/06/05/why-react.html |url-status=live |access-date=2022-02-17 |website=reactjs.org |language=en-US}}</ref> and Netflix and [[PayPal]] use universal loading to render identical HTML on both the server and client.<ref name="paypal-isomorphic-reactjs">{{cite web |date=2015-04-27 |title=PayPal Isomorphic React |url=https://medium.com/paypal-engineering/isomorphic-react-apps-with-react-engine-17dae662379c |url-status=live |archive-url=https://web.archive.org/web/20190208124143/https://www.paypal-engineering.com/2015/04/27/isomorphic-react-apps-with-react-engine/ |archive-date=2019-02-08 |access-date=2019-02-08 |website=medium.com}}</ref><ref name="netflix-isomorphic-reactjs">{{cite web |date=2015-01-28 |title=Netflix Isomorphic React |url=http://techblog.netflix.com/2015/01/netflix-likes-react.html |url-status=live |access-date=2022-02-14 |website=netflixtechblog.com |language=en-US}}</ref> === React hooks === Hooks are functions that let developers "hook into" React state and lifecycle features from function components.<ref>{{Cite web|url=https://reactjs.org/docs/hooks-overview.html|title=Hooks at a Glance – React|website=reactjs.org|language=en|access-date=2019-08-08}}</ref> Hooks do not work inside classes — they let you use React without classes.<ref>{{Cite web|url=https://blog.soshace.com/what-the-heck-is-react-hooks/|title=What the Heck is React Hooks?|date=2020-01-16|website=Soshace|language=en|access-date=2020-01-24}}</ref> React provides a few built-in hooks like <code>useState</code>,<ref>{{Cite web|url=https://reactjs.org/docs/hooks-state.html|title=Using the State Hook – React|website=reactjs.org|language=en|access-date=2020-01-24}}</ref> <code>useContext</code>, <code>useReducer</code> , <code>useMemo</code> and <code>useEffect</code>.<ref>{{Cite web|url=https://reactjs.org/docs/hooks-effect.html|title=Using the Effect Hook – React|website=reactjs.org|language=en|access-date=2020-01-24}}</ref> Others are documented in the Hooks API Reference.<ref>{{Cite web|url=https://reactjs.org/docs/hooks-reference.html|title=Hooks API Reference – React|website=reactjs.org|language=en|access-date=2020-01-24}}</ref> <code>useState</code> and <code>useEffect</code>, which are the most commonly used, are for controlling state and side effects respectively. ==== Rules of hooks ==== There are rules of hooks<ref>{{Cite web|url=https://reactjs.org/docs/hooks-rules.html|title=Rules of Hooks – React|website=reactjs.org|language=en|access-date=2020-01-24}}</ref> which describe the characteristic code pattern that hooks rely on. It is the modern way to handle state with React. # Hooks should only be called at the top level (not inside loops or if statements). # Hooks should only be called from React function components and custom hooks, not normal functions or class components. Although these rules can't be enforced at runtime, code analysis tools such as [[Lint (software)|linters]] can be configured to detect many mistakes during development. The rules apply to both usage of hooks and the implementation of custom hooks,<ref>{{Cite web|url=https://reactjs.org/docs/hooks-custom.html|title=Building Your Own Hooks – React|website=reactjs.org|language=en|access-date=2020-01-24}}</ref> which may call other hooks. ==Common idioms== React does not attempt to provide a complete "application library". It is designed specifically for building user interfaces<ref name="react" /> and therefore does not include many of the tools some developers might consider necessary to build an application. This allows the choice of whichever libraries the developer prefers to accomplish tasks such as performing network access or local data storage. Common patterns of usage have emerged as the library matures. ===Unidirectional data flow=== To support React's concept of unidirectional data flow (which might be contrasted with [[AngularJS]]'s bidirectional flow), the Flux architecture was developed as an alternative to the popular [[model–view–controller]] architecture. Flux features ''actions'' which are sent through a central ''dispatcher'' to a ''store'', and changes to the store are propagated back to the view.<ref name="flux">{{cite web|url=https://facebook.github.io/flux/docs/in-depth-overview|title=In Depth OverView|publisher=Facebook|access-date=7 April 2018|website=Flux}}</ref> When used with React, this propagation is accomplished through component properties. Since its conception, Flux has been superseded by libraries such as [[Redux (JavaScript library)|Redux]] and MobX.<ref>{{cite web|title=Flux Release 4.0|url=https://github.com/facebook/flux/releases/tag/4.0.0|website=Github|access-date=26 February 2021}}</ref> Flux can be considered a variant of the [[observer pattern]].<ref>{{cite web|last1=Johnson|first1=Nicholas|title=Introduction to Flux - React Exercise|url=http://nicholasjohnson.com/react/course/exercises/flux/|website=Nicholas Johnson|access-date=7 April 2018}}</ref> A React component under the Flux architecture should not directly modify any props passed to it, but should be passed callback functions that create ''actions'' which are sent by the dispatcher to modify the store. The action is an object whose responsibility is to describe what has taken place: for example, an action describing one user "following" another might contain a user id, a target user id, and the type <code>USER_FOLLOWED_ANOTHER_USER</code>.<ref>{{cite web|last1=Abramov|first1=Dan|title=The History of React and Flux with Dan Abramov|url=http://threedevsandamaybe.com/the-history-of-react-and-flux-with-dan-abramov/|website=Three Devs and a Maybe|access-date=7 April 2018}}</ref> The stores, which can be thought of as models, can alter themselves in response to actions received from the dispatcher. This pattern is sometimes expressed as "properties flow down, actions flow up". Many implementations of Flux have been created since its inception, perhaps the most well-known being [[Redux (JavaScript library)|Redux]], which features a single store, often called a [[single source of truth]].<ref>{{cite web|title=State Management Tools - Results|url=http://2016.stateofjs.com/2016/statemanagement/|website=The State of JavaScript|access-date=29 October 2021}}</ref> ==Future development== Project status can be tracked via the core team discussion forum.<ref>{{Cite web|title = Meeting Notes|url = https://discuss.reactjs.org/c/meeting-notes|website = React Discuss|access-date = 2015-12-13}}</ref> However, major changes to React go through the Future of React repository issues and [[pull request]]s.<ref>{{Cite web|title = reactjs/react-future - The Future of React|url = https://github.com/reactjs/react-future|website = GitHub|access-date = 2015-12-13}}</ref><ref>{{Cite web|title = facebook/react - Feature request issues|url = https://github.com/facebook/react/labels/Type:%20Feature%20Request|website = GitHub|access-date = 2015-12-13}}</ref> This enables the React community to provide feedback on new potential features, experimental APIs and JavaScript syntax improvements. ==History== React was created by Jordan Walke, a software engineer at Facebook, who released an early prototype of React called "FaxJS".<ref>{{cite web |last1=Walke |first1=Jordan |title=FaxJS |url=https://github.com/jordwalke/FaxJs |access-date=11 July 2019}}</ref><ref name="papp" /> He was influenced by [[XHP]], an [[HTML]] component library for [[PHP]]. It was first deployed on Facebook's [[News Feed]] in 2011 and later on [[Instagram]] in 2012.<ref>{{cite web|url=https://www.youtube.com/watch?v=A0Kj49z6WdM|title=Pete Hunt at TXJS}}</ref> It was open-sourced at JSConf US in May 2013.<ref name="papp">{{cite news |last1=Papp |first1=Andrea |title=The History of React.js on a Timeline |url=https://blog.risingstack.com/the-history-of-react-js-on-a-timeline/ |access-date=11 July 2019 |work=RisingStack |date=4 April 2018}}</ref> [[React Native]], which enables native [[Android (operating system)|Android]], [[iOS]], and [[Universal Windows Platform|UWP]] development with React, was announced at Facebook's React Conf in February 2015 and open-sourced in March 2015. On April 18, 2017, Facebook announced React Fiber, a new set of internal algorithms for rendering, as opposed to React's old rendering algorithm, Stack.<ref>{{Cite news|url=https://techcrunch.com/2017/04/18/facebook-announces-react-fiber-a-rewrite-of-its-react-framework/|title=Facebook announces React Fiber, a rewrite of its React library|publisher=TechCrunch|first=Frederic|last=Lardinois|date=18 April 2017|access-date=19 April 2017}}</ref> React Fiber was to become the foundation of any future improvements and feature development of the React library.<ref>{{cite web|title = React Fiber Architecture|url = https://github.com/acdlite/react-fiber-architecture| website=Github|access-date = 19 April 2017}}</ref>{{Update inline|reason=Last commit was in 2016. Is this statement still true?|date=June 2018}} The actual syntax for programming with React does not change; only the way that the syntax is executed has changed.<ref name="techcrunch">{{cite web|url=https://techcrunch.com/2017/04/18/facebook-announces-react-fiber-a-rewrite-of-its-react-framework/|title=Facebook announces React Fiber, a rewrite of its React framework|website=TechCrunch|accessdate=2018-10-19}}</ref> React's old rendering system, Stack, was developed at a time when the focus of the system on dynamic change was not understood. Stack was slow to draw complex animation, for example, trying to accomplish all of it in one chunk. Fiber breaks down animation into segments that can be spread out over multiple frames. Likewise, the structure of a page can be broken into segments that may be maintained and updated separately. JavaScript functions and virtual [[Document Object Model|DOM]] objects are called "fibers", and each can be operated and updated separately, allowing for smoother on-screen rendering.<ref name="github">{{cite web|url=https://github.com/acdlite/react-fiber-architecture|title=GitHub - acdlite/react-fiber-architecture: A description of React's new core algorithm, React Fiber|website=github.com|accessdate=2018-10-19}}</ref> On September 26, 2017, React 16.0 was released to the public.<ref>{{cite web |url=https://reactjs.org/blog/2017/09/26/react-v16.0.html |title=React v16.0 |publisher=react.js |date=2017-09-26 |access-date=2019-05-20 }}</ref> On February 16, 2019, React 16.8 was released to the public.<ref>{{cite web |url=https://reactjs.org/blog/2017/09/26/react-v16.0.html |title=React v16.8 |publisher=react.js |date=2019-02-16 |access-date=2019-05-20 }}</ref> The release introduced React Hooks.<ref>{{cite web |url=https://reactjs.org/docs/hooks-intro.html |title=Introducing Hooks |publisher=react.js |access-date=2019-05-20 }}</ref> On August 10, 2020, the React team announced the first release candidate for React v17.0, notable as the first major release without major changes to the React developer-facing API.<ref>url=https://reactjs.org/blog/2020/08/10/react-v17-rc.html</ref> {| class="wikitable" |+Versions |- style="position:sticky; top:0" !Version !Release Date !Changes |- |0.3.0 |29 May 2013 |Initial Public Release |- |0.4.0 |20 July 2013 |Support for comment nodes {{tag|div|content={{mset|/* */}}}}, Improved server-side rendering APIs, Removed React.autoBind, Support for the key prop, Improvements to forms, Fixed bugs. |- |0.5.0 |20 October 2013 |Improve Memory usage, Support for Selection and Composition events, Support for getInitialState and getDefaultProps in mixins, Added React.version and React.isValidClass, Improved compatibility for Windows. |- |0.8.0 |20 December 2013 |Added support for rows & cols, defer & async, loop for {{tag|audio|o}} & {{tag|video|o}}, autoCorrect attributes. Added onContextMenu events, Upgraded jstransform and esprima-fb tools, Upgraded browserify. |- |0.9.0 |20 February 2014 |Added support for crossOrigin, download and hrefLang, mediaGroup and muted, sandbox, seamless, and srcDoc, scope attributes, Added any, arrayOf, component, oneOfType, renderable, shape to React.PropTypes, Added support for onMouseOver and onMouseOut event, Added support for onLoad and onError on {{tag|img|o}} elements. |- |0.10.0 |21 March 2014 |Added support for srcSet and textAnchor attributes, add update function for immutable data, Ensure all void elements don't insert a closing tag. |- |0.11.0 |17 July 2014 |Improved SVG support, Normalized e.view event, Update $apply command, Added support for namespaces, Added new transformWithDetails API, includes pre-built packages under dist/, MyComponent() now returns a descriptor, not an instance. |- |0.12.0 |21 November 2014 |Added new features Spread operator ({...}) introduced to deprecate this.transferPropsTo, Added support for acceptCharset, classID, manifest HTML attributes, React.addons.batchedUpdates added to API, @jsx React.DOM no longer required, Fixed issues with CSS Transitions. |- |0.13.0 |10 March 2015 |Deprecated patterns that warned in 0.12 no longer work, ref resolution order has changed, Removed properties this._pendingState and this._rootNodeID, Support ES6 classes, Added API React.findDOMNode(component), Support for iterators and immutable-js sequences, Added new features React.addons.createFragment, deprecated React.addons.classSet. |- |0.14.1 |29 October 2015 |Added support for srcLang, default, kind attributes, and color attribute, Ensured legacy .props access on DOM nodes, Fixed scryRenderedDOMComponentsWithClass, Added react-dom.js. |- |15.0.0 |7 April 2016 |Initial render now uses document.createElement instead of generating HTML, No more extra {{tag|span|o}}s, Improved SVG support, {{code|ReactPerf.getLastMeasurements()}} is opaque, New deprecations introduced with a warning, Fixed multiple small memory leaks, React DOM now supports the cite and profile HTML attributes and cssFloat, gridRow and gridColumn CSS properties. |- |15.1.0 |20 May 2016 |Fix a batching bug, Ensure use of the latest object-assign, Fix regression, Remove use of merge utility, Renamed some modules. |- |15.2.0 |1 July 2016 |Include component stack information, Stop validating props at mount time, Add React.PropTypes.symbol, Add onLoad handling to {{tag|link|o}} and onError handling to {{tag|source|o}} element, Add {{code|isRunning()}} API, Fix performance regression. |- |15.3.0 |30 July 2016 |Add React.PureComponent, Fix issue with nested server rendering, Add xmlns, xmlnsXlink to support SVG attributes and referrerPolicy to HTML attributes, updates React Perf Add-on, Fixed issue with ref. |- |15.3.1 |19 August 2016 |Improve performance of development builds, Cleanup internal hooks, Upgrade fbjs, Improve startup time of React, Fix memory leak in server rendering, fix React Test Renderer, Change trackedTouchCount invariant into a console.error. |- |15.4.0 |16 November 2016 |React package and browser build no longer includes React DOM, Improved development performance, Fixed occasional test failures, update batchedUpdates API, React Perf, and {{code|ReactTestRenderer.create()}}. |- |15.4.1 |23 November 2016 |Restructure variable assignment, Fixed event handling, Fixed compatibility of browser build with AMD environments. |- |15.4.2 |6 January 2017 |Fixed build issues, Added missing package dependencies, Improved error messages. |- |15.5.0 |7 April 2017 |Added react-dom/test-utils, Removed peerDependencies, Fixed issue with Closure Compiler, Added a deprecation warning for React.createClass and React.PropTypes, Fixed Chrome bug. |- |15.5.4 |11 April 2017 |Fix compatibility with Enzyme by exposing batchedUpdates on shallow renderer, Update version of prop-types, Fix react-addons-create-fragment package to include loose-envify transform. |- |15.6.0 |13 June 2017 |Add support for CSS variables in style attribute and Grid style properties, Fix AMD support for addons depending on react, Remove unnecessary dependency, Add a deprecation warning for React.createClass and React.DOM factory helpers. |- |16.0.0 |26 September 2017 |Improved error handling with introduction of "error boundaries", React DOM allows passing non-standard attributes, Minor changes to setState behavior, remove react-with-addons.js build, Add React.createClass as create-react-class, React.PropTypes as prop-types, React.DOM as react-dom-factories, changes to the behavior of scheduling and lifecycle methods. |- |16.1.0 |9 November 2017 |Discontinuing Bower Releases, Fix an accidental extra global variable in the UMD builds, Fix onMouseEnter and onMouseLeave firing, Fix <textarea> placeholder, Remove unused code, Add a missing package.json dependency, Add support for React DevTools. |- |16.3.0 |29 March 2018 |Add a new officially supported context API, Add new packagePrevent an infinite loop when attempting to render portals with SSR, Fix an issue with this.state, Fix an IE/Edge issue. |- |16.3.1 |3 April 2018 |Prefix private API, Fix performance regression and error handling bugs in development mode, Add peer dependency, Fix a false positive warning in IE11 when using Fragment. |- |16.3.2 |16 April 2018 |Fix an IE crash, Fix labels in User Timing measurements, Add a UMD build, Improve performance of unstable_observedBits API with nesting. |- |16.4.0 |24 May 2018 |Add support for Pointer Events specification, Add the ability to specify propTypes, Fix reading context, Fix the {{code|getDerivedStateFromProps()}} support, Fix a testInstance.parent crash, Add React.unstable_Profiler component for measuring performance, Change internal event names. |- |16.5.0 |5 September 2018 |Add support for React DevTools Profiler, Handle errors in more edge cases gracefully, Add react-dom/profiling, Add onAuxClick event for browsers, Add movementX and movementY fields to mouse events, Add tangentialPressure and twist fields to pointer event. |- |16.6.0 |23 October 2018 |Add support for contextType, Support priority levels, continuations, and wrapped callbacks, Improve the fallback mechanism, Fix gray overlay on iOS Safari, Add {{code|React.lazy()}} for code splitting components. |- |16.7.0 |20 December 2018 |Fix performance of React.lazy for lazily-loaded components, Clear fields on unmount to avoid memory leaks, Fix bug with SSR, Fix a performance regression. |- |16.8.0 |6 February 2019 |Add Hooks, Add {{code|ReactTestRenderer.act()}} and {{code|ReactTestUtils.act()}} for batching updates, Support synchronous thenables passed to React.lazy(), Improve useReducer Hook lazy initialization API. |- |16.8.6 |27 March 2019 |Fix an incorrect bailout in useReducer(), Fix iframe warnings in Safari DevTools, Warn if contextType is set to Context.Consumer instead of Context, Warn if contextType is set to invalid values. |- |16.9.0 |9 August 2019 |Add {{mono|React.Profiler}} API for gathering performance measurements programmatically. Remove unstable_ConcurrentMode in favor of unstable_createRoot |- |16.10.0 |27 September 2019 |Fix edge case where a hook update wasn't being memoized. Fix heuristic for determining when to hydrate, so we don't incorrectly hydrate during an update. Clear additional fiber fields during unmount to save memory. Fix bug with required text fields in Firefox. Prefer Object.is instead of inline polyfill, when available. Fix bug when mixing Suspense and error handling. |- |16.10.1 |28 September 2019 |Fix regression in Next.js apps by allowing Suspense mismatch during hydration to silently proceed |- |16.10.2 |3 October 2019 |Fix regression in react-native-web by restoring order of arguments in event plugin extractors |- |16.11.0 |22 October 2019 |Fix mouseenter handlers from firing twice inside nested React containers. Remove unstable_createRoot and unstable_createSyncRoot experimental APIs. (These are available in the Experimental channel as createRoot and createSyncRoot.) |- |16.12.0 |14 November 2019 |React DOM - Fix passive effects (<code>useEffect</code>) not being fired in a multi-root app. React Is - Fix <code>lazy</code> and <code>memo</code> types considered elements instead of components |- |16.13.0 |26 February 2020 |Features added in React Concurrent mode. Fix regressions in React core library and React Dom. |- |16.13.1 |19 March 2020 |Fix bug in legacy mode Suspense. Revert warning for cross-component updates that happen inside class render lifecycles |- |16.14.0 |14 October 2020 |Add support for the new JSX transform. |- |17.0.0 |20 October 2020 |"No New Features" enables gradual React updates from older versions. Add new JSX Transform, Changes to Event Delegation |- |17.0.1 |22 October 2020 |React DOM - Fixes a crash in IE11 |- |17.0.2 |22 March 2021 |React DOM - Remove an unused dependency to address the <code>SharedArrayBuffer</code> cross-origin isolation warning. |- |18.0.0 |29 March 2022 |Concurrent React, Automatic batching, New Suspense Features, Transitions, Client and Server Rendering APIs, New Strict Mode Behaviors, New Hooks <ref>{{cite web|title=React v18.0|url=https://reactjs.org/blog/2022/03/29/react-v18.html|website=reactjs.org|language=en|access-date=2022-04-12}}</ref> |- |18.1.0 |26 April 2022 |Many fixes and performance improvements |- |18.1.2 |14 June 2022 |Many more fixes and performance improvements |} ==Licensing== The initial public release of React in May 2013 used the [[Apache License 2.0]]. In October 2014, React 0.12.0 replaced this with the [[BSD licenses#3-clause|3-clause BSD license]] and added a separate PATENTS text file that permits usage of any Facebook patents related to the software:<ref>{{cite web|title=React CHANGELOG.md|url=https://github.com/facebook/react/blob/master/CHANGELOG.md#0120-october-28-2014|website=GitHub}}</ref><blockquote>The license granted hereunder will terminate, automatically and without notice, for anyone that makes any claim (including by filing any lawsuit, assertion or other action) alleging (a) direct, indirect, or contributory infringement or inducement to infringe any patent: (i) by Facebook or any of its subsidiaries or affiliates, whether or not such claim is related to the Software, (ii) by any party if such claim arises in whole or in part from any software, product or service of Facebook or any of its subsidiaries or affiliates, whether or not such claim is related to the Software, or (iii) by any party relating to the Software; or (b) that any right in any patent claim of Facebook is invalid or unenforceable.</blockquote>This unconventional clause caused some controversy and debate in the React user community, because it could be interpreted to empower Facebook to revoke the license in many scenarios, for example, if Facebook sues the licensee prompting them to take "other action" by publishing the action on a blog or elsewhere. Many expressed concerns that Facebook could unfairly exploit the termination clause or that integrating React into a product might complicate a startup company's future acquisition.<ref>{{cite web|title=A compelling reason not to use ReactJS|first=Austin|last=Liu|url=https://medium.com/bits-and-pixels/a-compelling-reason-not-to-use-reactjs-beac24402f7b|website=Medium}}</ref> Based on community feedback, Facebook updated the patent grant in April 2015 to be less ambiguous and more permissive:<ref>{{cite web|title=Updating Our Open Source Patent Grant|url=https://code.facebook.com/posts/1639473982937255/updating-our-open-source-patent-grant/}}</ref> <blockquote>The license granted hereunder will terminate, automatically and without notice, if you (or any of your subsidiaries, corporate affiliates or agents) initiate directly or indirectly, or take a direct financial interest in, any Patent Assertion: (i) against Facebook or any of its subsidiaries or corporate affiliates, (ii) against any party if such Patent Assertion arises in whole or in part from any software, technology, product or service of Facebook or any of its subsidiaries or corporate affiliates, or (iii) against any party relating to the Software. [...] A "Patent Assertion" is any lawsuit or other action alleging direct, indirect, or contributory infringement or inducement to infringe any patent, including a cross-claim or counterclaim.<ref>{{cite web|title=Additional Grant of Patent Rights Version 2|url=https://github.com/facebook/react/blob/b8ba8c83f318b84e42933f6928f231dc0918f864/PATENTS|website=GitHub}}</ref></blockquote> The [[Apache Software Foundation]] considered this licensing arrangement to be incompatible with its licensing policies, as it "passes along risk to downstream consumers of our software imbalanced in favor of the licensor, not the licensee, thereby violating our Apache legal policy of being a universal donor", and "are not a subset of those found in the [Apache License 2.0], and they cannot be sublicensed as [Apache License 2.0]".<ref>{{Cite web|url=https://www.apache.org/legal/resolved.html|title=ASF Legal Previously Asked Questions|publisher=Apache Software Foundation|language=en|access-date=2017-07-16}}</ref> In August 2017, Facebook dismissed the Apache Foundation's downstream concerns and refused to reconsider their license.<ref>{{Cite web|url=https://code.facebook.com/posts/112130496157735/explaining-react-s-license/|title=Explaining React's License|website=Facebook|access-date=2017-08-18|language=en}}</ref><ref>{{Cite web|url=https://github.com/facebook/react/issues/10191#issuecomment-323486580|title=Consider re-licensing to AL v2.0, as RocksDB has just done|website=Github|language=en|access-date=2017-08-18}}</ref> The following month, [[WordPress]] decided to switch its Gutenberg and Calypso projects away from React.<ref>{{Cite web|url= https://techcrunch.com/2017/09/15/wordpress-to-ditch-react-library-over-facebook-patent-clause-risk/|title= WordPress to ditch React library over Facebook patent clause risk |website=TechCrunch|language=en|access-date=2017-09-16}}</ref> On September 23, 2017, Facebook announced that the following week, it would re-license Flow, [[Jest (JavaScript framework)|Jest]], React, and Immutable.js under a standard [[MIT License]]; the company stated that React was "the foundation of a broad ecosystem of open source software for the web", and that they did not want to "hold back forward progress for nontechnical reasons".<ref>{{Cite web|url= https://code.facebook.com/posts/300798627056246/relicensing-react-jest-flow-and-immutable-js/|title= Relicensing React, Jest, Flow, and Immutable.js |website=Facebook Code|language=en|date=2017-09-23}}</ref> On September 26, 2017, React 16.0.0 was released with the MIT license.<ref>{{cite web |url=https://reactjs.org/blog/2017/09/26/react-v16.0.html#mit-licensed|title= React v16.0§MIT licensed |last=Clark |first=Andrew |date=September 26, 2017 |website=React Blog}}</ref> The MIT license change has also been backported to the 15.x release line with React 15.6.2.<ref>{{cite web |url=https://reactjs.org/blog/2017/09/25/react-v15.6.2.html |title=React v15.6.2 |last=Hunzaker |first=Nathan |date=September 25, 2017 |website=React Blog}}</ref> ==See also== {{Portal|Free and open-source software}} *[[Angular (web framework)]] *[[Backbone.js]] *[[Ember.js]] *[[Gatsby (JavaScript framework)]] *[[Next.js]] *[[Svelte]] *[[Vue.js]] *[[Comparison of JavaScript libraries]] *[[Web Components]] ==References== {{Reflist|2}} 55.[https://www.websoptimization.com/blog/reason-to-choose-reactjs-for-your-next-project/ Reason to Choose ReactJS for Your Next Project] ==External links== * {{Official website}} {{JS templating |state=autocollapse}} {{Web frameworks}} {{ECMAScript}} {{Facebook navbox}} {{Authority control}} [[Category:2015 software]] [[Category:Ajax (programming)]] [[Category:Facebook software]] [[Category:JavaScript libraries]] [[Category:Software using the MIT license]] [[Category:Web applications]]'
Unified diff of changes made by edit (edit_diff)
'@@ -1,27 +1,2 @@ -{{For|the open-source mobile application framework|React Native}} - -{{Short description|JavaScript library for building user interfaces}} -{{Infobox software -| name = React -| logo = React-icon.svg -| author = Jordan Walke -| developer = [[Meta Platforms|Meta]] and community -| released = {{Start date and age|2013|5|29}}<ref name="initialrelease">{{cite web|access-date=22 Oct 2018|first1=Tom|first2=Jordan|last1=Occhino|last2=Walke|title=JS Apps at Facebook|url=https://www.youtube.com/watch?v=GW0rj4sNH2w|website=YouTube}}</ref> -| latest release version = -{{wikidata|property|reference|edit|P348}} -| latest release date = {{start date and age| -{{wikidata|qualifier|P348|P577}} -}} -| latest preview version = -| latest preview date = <!-- {{Start date and age|2016|04|7}}<ref name="ghrelease"/> --> -| programming language = [[JavaScript]] -| platform = [[Web platform]] -| genre = [[JavaScript library]] -| license = [[MIT License]] -}} - -'''React''' (also known as '''React.js''' or '''ReactJS''') is a [[Free and open-source software|free and open-source]] [[Front end and back end|front-end]] [[JavaScript library]]<ref name="react">{{Cite web |title=React - A JavaScript library for building user interfaces. |url=https://reactjs.org |url-status=live |access-date=7 April 2018 |website=reactjs.org |language=en-US}}</ref> for building [[user interfaces]] based on UI components. It is maintained by [[Meta Platforms|Meta]] (formerly Facebook) and a community of individual developers and companies.<ref>{{cite web |last=Krill |first=Paul |date=May 15, 2014 |title=React: Making faster, smoother UIs for data-driven Web apps |url=https://www.infoworld.com/article/2608181/javascript/react--making-faster--smoother-uis-for-data-driven-web-apps.html |url-status=live |access-date=2021-02-23 |website=[[InfoWorld]]}}</ref><ref>{{cite web |last=Hemel |first=Zef |date=June 3, 2013 |title=Facebook's React JavaScript User Interfaces Library Receives Mixed Reviews |url=https://www.infoq.com/news/2013/06/facebook-react |url-status=live |access-date=2022-01-11 |website=infoq.com |language=en-US}}</ref><ref>{{cite web |last=Dawson |first=Chris |date=July 25, 2014 |title=JavaScript's History and How it Led To ReactJS |url=https://thenewstack.io/javascripts-history-and-how-it-led-to-reactjs/ |url-status=live |access-date=2020-07-19 |website=The New Stack |language=en-US}}</ref> -React can be used as a base in the development of [[single-page application|single-page]], mobile, or server-rendered applications with frameworks like [[Next.js]]. However, React is only concerned with state management and rendering that state to the [[Document Object Model|DOM]], so creating React applications usually requires the use of additional libraries for routing, as well as certain client-side functionality.<ref>{{Cite news |last=Dere |first=Mohan |date=2018-02-19 |title=How to integrate create-react-app with all the libraries you need to make a great app |language=en-US |work=freeCodeCamp |url=https://medium.freecodecamp.org/integrating-create-react-app-redux-react-router-redux-observable-bootstrap-altogether-216db97e89a3 |url-status=live |access-date=2018-06-14}}</ref><ref>{{Cite news |last=Panchal |first=Krunal |date=2018-02-19 |title=Angular vs React Detailed Comparison |language=en-US |work=Groovy Web |url=https://www.groovyweb.co/blog/angular-vs-react-detail-comparison |url-status=live |access-date=2022-04-25}}</ref> - ==Basic usage== The following is a rudimentary example of React usage for the web written in [[React (JavaScript library)#JSX|JSX]] and JavaScript. '
New page size (new_size)
35466
Old page size (old_size)
39018
Size change in edit (edit_delta)
-3552
Lines added in edit (added_lines)
[]
Lines removed in edit (removed_lines)
[ 0 => '{{For|the open-source mobile application framework|React Native}}', 1 => '', 2 => '{{Short description|JavaScript library for building user interfaces}}', 3 => '{{Infobox software', 4 => '| name = React', 5 => '| logo = React-icon.svg', 6 => '| author = Jordan Walke', 7 => '| developer = [[Meta Platforms|Meta]] and community', 8 => '| released = {{Start date and age|2013|5|29}}<ref name="initialrelease">{{cite web|access-date=22 Oct 2018|first1=Tom|first2=Jordan|last1=Occhino|last2=Walke|title=JS Apps at Facebook|url=https://www.youtube.com/watch?v=GW0rj4sNH2w|website=YouTube}}</ref>', 9 => '| latest release version =', 10 => '{{wikidata|property|reference|edit|P348}}', 11 => '| latest release date = {{start date and age|', 12 => '{{wikidata|qualifier|P348|P577}}', 13 => '}}', 14 => '| latest preview version =', 15 => '| latest preview date = <!-- {{Start date and age|2016|04|7}}<ref name="ghrelease"/> -->', 16 => '| programming language = [[JavaScript]]', 17 => '| platform = [[Web platform]]', 18 => '| genre = [[JavaScript library]]', 19 => '| license = [[MIT License]]', 20 => '}}', 21 => '', 22 => ''''React''' (also known as '''React.js''' or '''ReactJS''') is a [[Free and open-source software|free and open-source]] [[Front end and back end|front-end]] [[JavaScript library]]<ref name="react">{{Cite web |title=React - A JavaScript library for building user interfaces. |url=https://reactjs.org |url-status=live |access-date=7 April 2018 |website=reactjs.org |language=en-US}}</ref> for building [[user interfaces]] based on UI components. It is maintained by [[Meta Platforms|Meta]] (formerly Facebook) and a community of individual developers and companies.<ref>{{cite web |last=Krill |first=Paul |date=May 15, 2014 |title=React: Making faster, smoother UIs for data-driven Web apps |url=https://www.infoworld.com/article/2608181/javascript/react--making-faster--smoother-uis-for-data-driven-web-apps.html |url-status=live |access-date=2021-02-23 |website=[[InfoWorld]]}}</ref><ref>{{cite web |last=Hemel |first=Zef |date=June 3, 2013 |title=Facebook's React JavaScript User Interfaces Library Receives Mixed Reviews |url=https://www.infoq.com/news/2013/06/facebook-react |url-status=live |access-date=2022-01-11 |website=infoq.com |language=en-US}}</ref><ref>{{cite web |last=Dawson |first=Chris |date=July 25, 2014 |title=JavaScript's History and How it Led To ReactJS |url=https://thenewstack.io/javascripts-history-and-how-it-led-to-reactjs/ |url-status=live |access-date=2020-07-19 |website=The New Stack |language=en-US}}</ref>', 23 => 'React can be used as a base in the development of [[single-page application|single-page]], mobile, or server-rendered applications with frameworks like [[Next.js]]. However, React is only concerned with state management and rendering that state to the [[Document Object Model|DOM]], so creating React applications usually requires the use of additional libraries for routing, as well as certain client-side functionality.<ref>{{Cite news |last=Dere |first=Mohan |date=2018-02-19 |title=How to integrate create-react-app with all the libraries you need to make a great app |language=en-US |work=freeCodeCamp |url=https://medium.freecodecamp.org/integrating-create-react-app-redux-react-router-redux-observable-bootstrap-altogether-216db97e89a3 |url-status=live |access-date=2018-06-14}}</ref><ref>{{Cite news |last=Panchal |first=Krunal |date=2018-02-19 |title=Angular vs React Detailed Comparison |language=en-US |work=Groovy Web |url=https://www.groovyweb.co/blog/angular-vs-react-detail-comparison |url-status=live |access-date=2022-04-25}}</ref>', 24 => '' ]
Parsed HTML source of the new revision (new_html)
'<div class="mw-parser-output"><div id="toc" class="toc" role="navigation" aria-labelledby="mw-toc-heading"><input type="checkbox" role="button" id="toctogglecheckbox" class="toctogglecheckbox" style="display:none" /><div class="toctitle" lang="en" dir="ltr"><h2 id="mw-toc-heading">Contents</h2><span class="toctogglespan"><label class="toctogglelabel" for="toctogglecheckbox"></label></span></div> <ul> <li class="toclevel-1 tocsection-1"><a href="#Basic_usage"><span class="tocnumber">1</span> <span class="toctext">Basic usage</span></a></li> <li class="toclevel-1 tocsection-2"><a href="#Notable_features"><span class="tocnumber">2</span> <span class="toctext">Notable features</span></a> <ul> <li class="toclevel-2 tocsection-3"><a href="#Declarative"><span class="tocnumber">2.1</span> <span class="toctext">Declarative</span></a></li> <li class="toclevel-2 tocsection-4"><a href="#Components"><span class="tocnumber">2.2</span> <span class="toctext">Components</span></a></li> <li class="toclevel-2 tocsection-5"><a href="#Functional_components"><span class="tocnumber">2.3</span> <span class="toctext">Functional components</span></a></li> <li class="toclevel-2 tocsection-6"><a href="#Class-based_components"><span class="tocnumber">2.4</span> <span class="toctext">Class-based components</span></a></li> <li class="toclevel-2 tocsection-7"><a href="#Virtual_DOM"><span class="tocnumber">2.5</span> <span class="toctext">Virtual DOM</span></a></li> <li class="toclevel-2 tocsection-8"><a href="#Lifecycle_methods"><span class="tocnumber">2.6</span> <span class="toctext">Lifecycle methods</span></a></li> <li class="toclevel-2 tocsection-9"><a href="#JSX"><span class="tocnumber">2.7</span> <span class="toctext">JSX</span></a></li> <li class="toclevel-2 tocsection-10"><a href="#Architecture_beyond_HTML"><span class="tocnumber">2.8</span> <span class="toctext">Architecture beyond HTML</span></a></li> <li class="toclevel-2 tocsection-11"><a href="#React_hooks"><span class="tocnumber">2.9</span> <span class="toctext">React hooks</span></a> <ul> <li class="toclevel-3 tocsection-12"><a href="#Rules_of_hooks"><span class="tocnumber">2.9.1</span> <span class="toctext">Rules of hooks</span></a></li> </ul> </li> </ul> </li> <li class="toclevel-1 tocsection-13"><a href="#Common_idioms"><span class="tocnumber">3</span> <span class="toctext">Common idioms</span></a> <ul> <li class="toclevel-2 tocsection-14"><a href="#Unidirectional_data_flow"><span class="tocnumber">3.1</span> <span class="toctext">Unidirectional data flow</span></a></li> </ul> </li> <li class="toclevel-1 tocsection-15"><a href="#Future_development"><span class="tocnumber">4</span> <span class="toctext">Future development</span></a></li> <li class="toclevel-1 tocsection-16"><a href="#History"><span class="tocnumber">5</span> <span class="toctext">History</span></a></li> <li class="toclevel-1 tocsection-17"><a href="#Licensing"><span class="tocnumber">6</span> <span class="toctext">Licensing</span></a></li> <li class="toclevel-1 tocsection-18"><a href="#See_also"><span class="tocnumber">7</span> <span class="toctext">See also</span></a></li> <li class="toclevel-1 tocsection-19"><a href="#References"><span class="tocnumber">8</span> <span class="toctext">References</span></a></li> <li class="toclevel-1 tocsection-20"><a href="#External_links"><span class="tocnumber">9</span> <span class="toctext">External links</span></a></li> </ul> </div> <h2><span class="mw-headline" id="Basic_usage">Basic usage</span></h2> <p>The following is a rudimentary example of React usage for the web written in <a href="/wiki/React_(JavaScript_library)#JSX" title="React (JavaScript library)">JSX</a> and JavaScript. </p> <div class="mw-highlight mw-highlight-lang-javascript mw-content-ltr mw-highlight-lines" dir="ltr"><pre><span></span><span class="linenos" data-line="1"></span><span class="k">import</span> <span class="nx">React</span> <span class="kr">from</span> <span class="s1">&#39;react&#39;</span><span class="p">;</span> <span class="linenos" data-line="2"></span><span class="k">import</span> <span class="nx">ReactDOM</span> <span class="kr">from</span> <span class="s1">&#39;react-dom/client&#39;</span><span class="p">;</span> <span class="linenos" data-line="3"></span> <span class="linenos" data-line="4"></span><span class="kd">const</span> <span class="nx">Greeting</span> <span class="o">=</span> <span class="p">()</span> <span class="p">=&gt;</span> <span class="p">{</span> <span class="linenos" data-line="5"></span> <span class="k">return</span> <span class="p">(</span> <span class="linenos" data-line="6"></span> <span class="o">&lt;</span><span class="nx">div</span> <span class="nx">className</span><span class="o">=</span><span class="s2">&quot;hello-world&quot;</span><span class="o">&gt;</span> <span class="linenos" data-line="7"></span> <span class="o">&lt;</span><span class="nx">h1</span><span class="o">&gt;</span><span class="nx">Hello</span><span class="p">,</span> <span class="nx">world</span><span class="o">!&lt;</span><span class="err">/h1&gt;</span> <span class="linenos" data-line="8"></span> <span class="o">&lt;</span><span class="err">/div&gt;</span> <span class="linenos" data-line="9"></span> <span class="p">);</span> <span class="linenos" data-line="10"></span><span class="p">};</span> <span class="linenos" data-line="11"></span> <span class="linenos" data-line="12"></span><span class="kd">const</span> <span class="nx">App</span> <span class="o">=</span> <span class="p">()</span> <span class="p">=&gt;</span> <span class="p">{</span> <span class="linenos" data-line="13"></span> <span class="k">return</span> <span class="o">&lt;</span><span class="nx">Greeting</span> <span class="o">/&gt;</span><span class="p">;</span> <span class="linenos" data-line="14"></span><span class="p">};</span> <span class="linenos" data-line="15"></span> <span class="linenos" data-line="16"></span><span class="kd">const</span> <span class="nx">root</span> <span class="o">=</span> <span class="nx">ReactDOM</span><span class="p">.</span><span class="nx">createRoot</span><span class="p">(</span><span class="nb">document</span><span class="p">.</span><span class="nx">getElementById</span><span class="p">(</span><span class="s1">&#39;root&#39;</span><span class="p">));</span> <span class="linenos" data-line="17"></span> <span class="linenos" data-line="18"></span><span class="nx">root</span><span class="p">.</span><span class="nx">render</span><span class="p">(</span> <span class="linenos" data-line="19"></span> <span class="o">&lt;</span><span class="nx">React</span><span class="p">.</span><span class="nx">StrictMode</span><span class="o">&gt;</span> <span class="linenos" data-line="20"></span> <span class="o">&lt;</span><span class="nx">App</span> <span class="o">/&gt;</span> <span class="linenos" data-line="21"></span> <span class="o">&lt;</span><span class="err">/React.StrictMode&gt;</span> <span class="linenos" data-line="22"></span><span class="p">);</span> </pre></div> <p>based on <a href="/wiki/HTML" title="HTML">HTML</a> document below. </p> <div class="mw-highlight mw-highlight-lang-html mw-content-ltr mw-highlight-lines" dir="ltr"><pre><span></span><span class="linenos" data-line="1"></span><span class="cp">&lt;!DOCTYPE html&gt;</span> <span class="linenos" data-line="2"></span><span class="p">&lt;</span><span class="nt">html</span> <span class="na">lang</span><span class="o">=</span><span class="s">&quot;en&quot;</span><span class="p">&gt;</span> <span class="linenos" data-line="3"></span><span class="p">&lt;</span><span class="nt">head</span><span class="p">&gt;</span> <span class="linenos" data-line="4"></span> <span class="p">&lt;</span><span class="nt">meta</span> <span class="na">charset</span><span class="o">=</span><span class="s">&quot;utf-8&quot;</span> <span class="p">/&gt;</span> <span class="linenos" data-line="5"></span> <span class="p">&lt;</span><span class="nt">title</span><span class="p">&gt;</span>React App<span class="p">&lt;/</span><span class="nt">title</span><span class="p">&gt;</span> <span class="linenos" data-line="6"></span><span class="p">&lt;/</span><span class="nt">head</span><span class="p">&gt;</span> <span class="linenos" data-line="7"></span><span class="p">&lt;</span><span class="nt">body</span><span class="p">&gt;</span> <span class="linenos" data-line="8"></span> <span class="p">&lt;</span><span class="nt">noscript</span><span class="p">&gt;</span>You need to enable JavaScript to run this app.<span class="p">&lt;/</span><span class="nt">noscript</span><span class="p">&gt;</span> <span class="linenos" data-line="9"></span> <span class="p">&lt;</span><span class="nt">div</span> <span class="na">id</span><span class="o">=</span><span class="s">&quot;root&quot;</span><span class="p">&gt;&lt;/</span><span class="nt">div</span><span class="p">&gt;</span> <span class="linenos" data-line="10"></span><span class="p">&lt;/</span><span class="nt">body</span><span class="p">&gt;</span> <span class="linenos" data-line="11"></span><span class="p">&lt;/</span><span class="nt">html</span><span class="p">&gt;</span> </pre></div> <p>The <code>Greeting</code> function is a React component that displays the famous introductory ''Hello, world". </p><p>When displayed in a web browser, the result will be a rendering of: </p> <div class="mw-highlight mw-highlight-lang-html mw-content-ltr" dir="ltr"><pre><span></span><span class="p">&lt;</span><span class="nt">div</span> <span class="na">class</span><span class="o">=</span><span class="s">&quot;hello-world&quot;</span><span class="p">&gt;</span> <span class="p">&lt;</span><span class="nt">h1</span><span class="p">&gt;</span>Hello, world!<span class="p">&lt;/</span><span class="nt">h1</span><span class="p">&gt;</span> <span class="p">&lt;/</span><span class="nt">div</span><span class="p">&gt;</span> </pre></div> <h2><span class="mw-headline" id="Notable_features">Notable features</span></h2> <style data-mw-deduplicate="TemplateStyles:r1097763485">.mw-parser-output .ambox{border:1px solid #a2a9b1;border-left:10px solid #36c;background-color:#fbfbfb;box-sizing:border-box}.mw-parser-output .ambox+link+.ambox,.mw-parser-output .ambox+link+style+.ambox,.mw-parser-output .ambox+link+link+.ambox,.mw-parser-output .ambox+.mw-empty-elt+link+.ambox,.mw-parser-output .ambox+.mw-empty-elt+link+style+.ambox,.mw-parser-output .ambox+.mw-empty-elt+link+link+.ambox{margin-top:-1px}html body.mediawiki .mw-parser-output .ambox.mbox-small-left{margin:4px 1em 4px 0;overflow:hidden;width:238px;border-collapse:collapse;font-size:88%;line-height:1.25em}.mw-parser-output .ambox-speedy{border-left:10px solid #b32424;background-color:#fee7e6}.mw-parser-output .ambox-delete{border-left:10px solid #b32424}.mw-parser-output .ambox-content{border-left:10px solid #f28500}.mw-parser-output .ambox-style{border-left:10px solid #fc3}.mw-parser-output .ambox-move{border-left:10px solid #9932cc}.mw-parser-output .ambox-protection{border-left:10px solid #a2a9b1}.mw-parser-output .ambox .mbox-text{border:none;padding:0.25em 0.5em;width:100%}.mw-parser-output .ambox .mbox-image{border:none;padding:2px 0 2px 0.5em;text-align:center}.mw-parser-output .ambox .mbox-imageright{border:none;padding:2px 0.5em 2px 0;text-align:center}.mw-parser-output .ambox .mbox-empty-cell{border:none;padding:0;width:1px}.mw-parser-output .ambox .mbox-image-div{width:52px}html.client-js body.skin-minerva .mw-parser-output .mbox-text-span{margin-left:23px!important}@media(min-width:720px){.mw-parser-output .ambox{margin:0 10%}}</style><table class="box-Manual plainlinks metadata ambox ambox-style" role="presentation"><tbody><tr><td class="mbox-image"><div class="mbox-image-div"><img alt="" src="//upload.wikimedia.org/wikipedia/en/thumb/f/f2/Edit-clear.svg/40px-Edit-clear.svg.png" decoding="async" width="40" height="40" srcset="//upload.wikimedia.org/wikipedia/en/thumb/f/f2/Edit-clear.svg/60px-Edit-clear.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/f/f2/Edit-clear.svg/80px-Edit-clear.svg.png 2x" data-file-width="48" data-file-height="48" /></div></td><td class="mbox-text"><div class="mbox-text-span">This article <b>is written like <a href="/wiki/Wikipedia:What_Wikipedia_is_not#GUIDE" title="Wikipedia:What Wikipedia is not">a manual or guidebook</a>.</b><span class="hide-when-compact"> Please help <a class="external text" href="https://en.wikipedia.org/w/index.php?title=React_(JavaScript_library)&amp;action=edit">rewrite this article</a> from a descriptive, <a href="/wiki/Wikipedia:Neutral_point_of_view" title="Wikipedia:Neutral point of view">neutral point of view</a>, and remove advice or instruction.</span> <span class="date-container"><i>(<span class="date">September 2021</span>)</i></span><span class="hide-when-compact"><i> (<small><a href="/wiki/Help:Maintenance_template_removal" title="Help:Maintenance template removal">Learn how and when to remove this template message</a></small>)</i></span></div></td></tr></tbody></table> <h3><span class="mw-headline" id="Declarative">Declarative</span></h3> <p>React adheres to the <a href="/wiki/Declarative_programming" title="Declarative programming">declarative programming</a> paradigm. Developers design views for each state of an application, and React updates and renders components when data changes. This is in contrast with <a href="/wiki/Imperative_programming" title="Imperative programming">imperative programming</a>.<sup id="cite_ref-schwarzmüller_1-0" class="reference"><a href="#cite_note-schwarzmüller-1">&#91;1&#93;</a></sup> </p> <h3><span class="mw-headline" id="Components">Components</span></h3> <p>React code is made of entities called <a href="/wiki/Component-based_software_engineering" title="Component-based software engineering">components</a>. These components are reusable and must be formed in the SRC folder following the Pascal Case as its naming convention (capitalize camelCase). Components can be rendered to a particular element in the <a href="/wiki/Document_Object_Model" title="Document Object Model">DOM</a> using the React DOM library. When rendering a component, one can pass the values between components through "props":<sup id="cite_ref-2" class="reference"><a href="#cite_note-2">&#91;2&#93;</a></sup> </p> <div class="mw-highlight mw-highlight-lang-javascript mw-content-ltr" dir="ltr"><pre><span></span><span class="k">import</span> <span class="nx">React</span> <span class="kr">from</span> <span class="s2">&quot;react&quot;</span><span class="p">;</span> <span class="k">import</span> <span class="nx">Tool</span> <span class="kr">from</span> <span class="s2">&quot;./Tool&quot;</span><span class="p">;</span> <span class="kd">const</span> <span class="nx">Example</span> <span class="o">=</span> <span class="p">()</span> <span class="p">=&gt;</span> <span class="p">{</span> <span class="k">return</span> <span class="p">(</span> <span class="o">&lt;&gt;</span> <span class="o">&lt;</span><span class="nx">div</span> <span class="nx">className</span><span class="o">=</span><span class="s2">&quot;app&quot;</span><span class="o">&gt;</span> <span class="o">&lt;</span><span class="nx">Tool</span> <span class="nx">name</span><span class="o">=</span><span class="s2">&quot;Gulshan&quot;</span> <span class="o">/&gt;</span> <span class="o">&lt;</span><span class="err">/div&gt;</span> <span class="o">&lt;</span><span class="err">/&gt;</span> <span class="p">);</span> <span class="p">};</span> <span class="k">export</span> <span class="k">default</span> <span class="nx">Example</span><span class="p">;</span> </pre></div> <p>In the above example, the <code>name</code> property with the value "Gulshan" has been passed from the <code>Example</code> component to the <code>Tool</code> component. </p><p>Also the <code>return</code> section is wrapped in a tag because there is a limitation in the <code>return</code> function, it can only return a single value. So all JSX elements and components are bound into a single tag. </p><p> The two primary ways of declaring components in React are through function components and class-based components. </p><div> <div> <h3><span class="mw-headline" id="Functional_components">Functional components</span></h3> <p>Function components are declared with a function that then returns some JSX. </p> <div class="mw-highlight mw-highlight-lang-js mw-content-ltr" dir="ltr"><pre><span></span><span class="kd">const</span> <span class="nx">Greeter</span> <span class="o">=</span> <span class="p">()</span> <span class="p">=&gt;</span> <span class="o">&lt;</span><span class="nx">div</span><span class="o">&gt;</span><span class="nx">Hello</span> <span class="nx">World</span><span class="o">&lt;</span><span class="err">/div&gt;;</span> </pre></div> <h3><span class="mw-headline" id="Class-based_components">Class-based components</span></h3> <p>Class-based components are declared using <a href="/wiki/ECMAScript" title="ECMAScript">ES6</a> classes. </p> <div class="mw-highlight mw-highlight-lang-js mw-content-ltr" dir="ltr"><pre><span></span><span class="kd">class</span> <span class="nx">ParentComponent</span> <span class="k">extends</span> <span class="nx">React</span><span class="p">.</span><span class="nx">Component</span> <span class="p">{</span> <span class="nx">state</span> <span class="o">=</span> <span class="p">{</span> <span class="nx">color</span><span class="o">:</span> <span class="s1">&#39;green&#39;</span> <span class="p">};</span> <span class="nx">render</span><span class="p">()</span> <span class="p">{</span> <span class="k">return</span> <span class="p">(</span> <span class="o">&lt;</span><span class="nx">ChildComponent</span> <span class="nx">color</span><span class="o">=</span><span class="p">{</span><span class="k">this</span><span class="p">.</span><span class="nx">state</span><span class="p">.</span><span class="nx">color</span><span class="p">}</span> <span class="o">/&gt;</span> <span class="p">);</span> <span class="p">}</span> <span class="p">}</span> </pre></div>Where class components are all about the use of classes and the lifecycle methods, functional components have hooks to deal with state management and other problems which arise when writing code in React. <h3><span class="mw-headline" id="Virtual_DOM">Virtual DOM</span></h3> <p>Another notable feature is the use of a virtual <a href="/wiki/Document_Object_Model" title="Document Object Model">Document Object Model</a>, or virtual DOM. React creates an <a href="/wiki/In-memory_processing" title="In-memory processing">in-memory</a> data-structure cache, computes the resulting differences, and then updates the browser's displayed DOM efficiently.<sup id="cite_ref-workingwiththebrowser_3-0" class="reference"><a href="#cite_note-workingwiththebrowser-3">&#91;3&#93;</a></sup> This process is called <b>reconciliation</b>. This allows the programmer to write code as if the entire page is rendered on each change, while the React libraries only render subcomponents that actually change. This selective rendering provides a major performance boost.<sup id="cite_ref-:0_4-0" class="reference"><a href="#cite_note-:0-4">&#91;4&#93;</a></sup> It saves the effort of recalculating the CSS style, layout for the page and rendering for the entire page.<sup id="cite_ref-:0_4-1" class="reference"><a href="#cite_note-:0-4">&#91;4&#93;</a></sup> </p> <h3><span class="mw-headline" id="Lifecycle_methods">Lifecycle methods</span></h3> <p>Lifecycle methods for class-based components use a form of <a href="/wiki/Hooking" title="Hooking">hooking</a> that allows the execution of code at set points during a component's lifetime. </p> <ul><li><code>shouldComponentUpdate</code> allows the developer to prevent unnecessary re-rendering of a component by returning false if a render is not required.</li> <li><code>componentDidMount</code> is called once the component has "mounted" (the component has been created in the user interface, often by associating it with a <a href="/wiki/Document_Object_Model" title="Document Object Model">DOM</a> node). This is commonly used to trigger data loading from a remote source via an <a href="/wiki/API" title="API">API</a>.</li> <li><code>componentWillUnmount</code> is called immediately before the component is torn down or "unmounted". This is commonly used to clear resource-demanding dependencies to the component that will not simply be removed with the unmounting of the component (e.g., removing any <code>setInterval()</code> instances that are related to the component, or an "<a href="/wiki/Event_(computing)" title="Event (computing)">eventListener</a>" set on the "document" because of the presence of the component)</li> <li><code>render</code> is the most important lifecycle method and the only required one in any component. It is usually called every time the component's state is updated, which should be reflected in the user interface.</li></ul> <h3><span class="mw-headline" id="JSX">JSX</span></h3> <style data-mw-deduplicate="TemplateStyles:r1033289096">.mw-parser-output .hatnote{font-style:italic}.mw-parser-output div.hatnote{padding-left:1.6em;margin-bottom:0.5em}.mw-parser-output .hatnote i{font-style:normal}.mw-parser-output .hatnote+link+.hatnote{margin-top:-0.5em}</style><div role="note" class="hatnote navigation-not-searchable">Main article: <a href="/wiki/JSX_(JavaScript)" title="JSX (JavaScript)">JSX</a></div> <p><a href="/wiki/JSX_(JavaScript)" title="JSX (JavaScript)">JSX</a>, or JavaScript Syntax Extension, is an extension to the JavaScript language syntax.<sup id="cite_ref-5" class="reference"><a href="#cite_note-5">&#91;5&#93;</a></sup> Similar in appearance to HTML, JSX provides a way to structure component rendering using syntax familiar to many developers. React components are typically written using JSX, although they do not have to be (components may also be written in pure JavaScript). JSX is similar to another extension syntax created by Facebook for <a href="/wiki/PHP" title="PHP">PHP</a> called <a href="/wiki/XHP" title="XHP">XHP</a>. </p><p>An example of JSX code: </p> <div class="mw-highlight mw-highlight-lang-dart mw-content-ltr" dir="ltr"><pre><span></span><span class="kd">class</span> <span class="nc">App</span> <span class="kd">extends</span> <span class="n">React</span><span class="p">.</span><span class="n">Component</span> <span class="p">{</span> <span class="n">render</span><span class="p">()</span> <span class="p">{</span> <span class="k">return</span> <span class="p">(</span> <span class="o">&lt;</span><span class="n">div</span><span class="o">&gt;</span> <span class="o">&lt;</span><span class="n">p</span><span class="o">&gt;</span><span class="n">Header</span><span class="o">&lt;/</span><span class="n">p</span><span class="o">&gt;</span> <span class="o">&lt;</span><span class="n">p</span><span class="o">&gt;</span><span class="n">Content</span><span class="o">&lt;/</span><span class="n">p</span><span class="o">&gt;</span> <span class="o">&lt;</span><span class="n">p</span><span class="o">&gt;</span><span class="n">Footer</span><span class="o">&lt;/</span><span class="n">p</span><span class="o">&gt;</span> <span class="o">&lt;/</span><span class="n">div</span><span class="o">&gt;</span> <span class="p">);</span> <span class="p">}</span> <span class="p">}</span> </pre></div> <h3><span class="mw-headline" id="Architecture_beyond_HTML">Architecture beyond HTML</span></h3> <p>The basic architecture of React applies beyond rendering HTML in the browser. For example, Facebook has dynamic charts that render to <code>&lt;canvas&gt;</code> tags,<sup id="cite_ref-6" class="reference"><a href="#cite_note-6">&#91;6&#93;</a></sup> and Netflix and <a href="/wiki/PayPal" title="PayPal">PayPal</a> use universal loading to render identical HTML on both the server and client.<sup id="cite_ref-paypal-isomorphic-reactjs_7-0" class="reference"><a href="#cite_note-paypal-isomorphic-reactjs-7">&#91;7&#93;</a></sup><sup id="cite_ref-netflix-isomorphic-reactjs_8-0" class="reference"><a href="#cite_note-netflix-isomorphic-reactjs-8">&#91;8&#93;</a></sup> </p> <h3><span class="mw-headline" id="React_hooks">React hooks</span></h3> <p>Hooks are functions that let developers "hook into" React state and lifecycle features from function components.<sup id="cite_ref-9" class="reference"><a href="#cite_note-9">&#91;9&#93;</a></sup> Hooks do not work inside classes — they let you use React without classes.<sup id="cite_ref-10" class="reference"><a href="#cite_note-10">&#91;10&#93;</a></sup> </p><p>React provides a few built-in hooks like <code>useState</code>,<sup id="cite_ref-11" class="reference"><a href="#cite_note-11">&#91;11&#93;</a></sup> <code>useContext</code>, <code>useReducer</code> , <code>useMemo</code> and <code>useEffect</code>.<sup id="cite_ref-12" class="reference"><a href="#cite_note-12">&#91;12&#93;</a></sup> Others are documented in the Hooks API Reference.<sup id="cite_ref-13" class="reference"><a href="#cite_note-13">&#91;13&#93;</a></sup> <code>useState</code> and <code>useEffect</code>, which are the most commonly used, are for controlling state and side effects respectively. </p> <h4><span class="mw-headline" id="Rules_of_hooks">Rules of hooks</span></h4> <p>There are rules of hooks<sup id="cite_ref-14" class="reference"><a href="#cite_note-14">&#91;14&#93;</a></sup> which describe the characteristic code pattern that hooks rely on. It is the modern way to handle state with React. </p> <ol><li>Hooks should only be called at the top level (not inside loops or if statements).</li> <li>Hooks should only be called from React function components and custom hooks, not normal functions or class components.</li></ol> <p>Although these rules can't be enforced at runtime, code analysis tools such as <a href="/wiki/Lint_(software)" title="Lint (software)">linters</a> can be configured to detect many mistakes during development. The rules apply to both usage of hooks and the implementation of custom hooks,<sup id="cite_ref-15" class="reference"><a href="#cite_note-15">&#91;15&#93;</a></sup> which may call other hooks. </p> <h2><span class="mw-headline" id="Common_idioms">Common idioms</span></h2> <p>React does not attempt to provide a complete "application library". It is designed specifically for building user interfaces<sup id="cite_ref-react_16-0" class="reference"><a href="#cite_note-react-16">&#91;16&#93;</a></sup> and therefore does not include many of the tools some developers might consider necessary to build an application. This allows the choice of whichever libraries the developer prefers to accomplish tasks such as performing network access or local data storage. Common patterns of usage have emerged as the library matures. </p> <h3><span class="mw-headline" id="Unidirectional_data_flow">Unidirectional data flow</span></h3> <p>To support React's concept of unidirectional data flow (which might be contrasted with <a href="/wiki/AngularJS" title="AngularJS">AngularJS</a>'s bidirectional flow), the Flux architecture was developed as an alternative to the popular <a href="/wiki/Model%E2%80%93view%E2%80%93controller" title="Model–view–controller">model–view–controller</a> architecture. Flux features <i>actions</i> which are sent through a central <i>dispatcher</i> to a <i>store</i>, and changes to the store are propagated back to the view.<sup id="cite_ref-flux_17-0" class="reference"><a href="#cite_note-flux-17">&#91;17&#93;</a></sup> When used with React, this propagation is accomplished through component properties. Since its conception, Flux has been superseded by libraries such as <a href="/wiki/Redux_(JavaScript_library)" title="Redux (JavaScript library)">Redux</a> and MobX.<sup id="cite_ref-18" class="reference"><a href="#cite_note-18">&#91;18&#93;</a></sup> </p><p>Flux can be considered a variant of the <a href="/wiki/Observer_pattern" title="Observer pattern">observer pattern</a>.<sup id="cite_ref-19" class="reference"><a href="#cite_note-19">&#91;19&#93;</a></sup> </p><p>A React component under the Flux architecture should not directly modify any props passed to it, but should be passed callback functions that create <i>actions</i> which are sent by the dispatcher to modify the store. The action is an object whose responsibility is to describe what has taken place: for example, an action describing one user "following" another might contain a user id, a target user id, and the type <code>USER_FOLLOWED_ANOTHER_USER</code>.<sup id="cite_ref-20" class="reference"><a href="#cite_note-20">&#91;20&#93;</a></sup> The stores, which can be thought of as models, can alter themselves in response to actions received from the dispatcher. </p><p>This pattern is sometimes expressed as "properties flow down, actions flow up". Many implementations of Flux have been created since its inception, perhaps the most well-known being <a href="/wiki/Redux_(JavaScript_library)" title="Redux (JavaScript library)">Redux</a>, which features a single store, often called a <a href="/wiki/Single_source_of_truth" title="Single source of truth">single source of truth</a>.<sup id="cite_ref-21" class="reference"><a href="#cite_note-21">&#91;21&#93;</a></sup> </p> <h2><span class="mw-headline" id="Future_development">Future development</span></h2> <p>Project status can be tracked via the core team discussion forum.<sup id="cite_ref-22" class="reference"><a href="#cite_note-22">&#91;22&#93;</a></sup> However, major changes to React go through the Future of React repository issues and <a href="/wiki/Pull_request" class="mw-redirect" title="Pull request">pull requests</a>.<sup id="cite_ref-23" class="reference"><a href="#cite_note-23">&#91;23&#93;</a></sup><sup id="cite_ref-24" class="reference"><a href="#cite_note-24">&#91;24&#93;</a></sup> This enables the React community to provide feedback on new potential features, experimental APIs and JavaScript syntax improvements. </p> <h2><span class="mw-headline" id="History">History</span></h2> <p>React was created by Jordan Walke, a software engineer at Facebook, who released an early prototype of React called "FaxJS".<sup id="cite_ref-25" class="reference"><a href="#cite_note-25">&#91;25&#93;</a></sup><sup id="cite_ref-papp_26-0" class="reference"><a href="#cite_note-papp-26">&#91;26&#93;</a></sup> He was influenced by <a href="/wiki/XHP" title="XHP">XHP</a>, an <a href="/wiki/HTML" title="HTML">HTML</a> component library for <a href="/wiki/PHP" title="PHP">PHP</a>. It was first deployed on Facebook's <a href="/wiki/News_Feed" class="mw-redirect" title="News Feed">News Feed</a> in 2011 and later on <a href="/wiki/Instagram" title="Instagram">Instagram</a> in 2012.<sup id="cite_ref-27" class="reference"><a href="#cite_note-27">&#91;27&#93;</a></sup> It was open-sourced at JSConf US in May 2013.<sup id="cite_ref-papp_26-1" class="reference"><a href="#cite_note-papp-26">&#91;26&#93;</a></sup> </p><p><a href="/wiki/React_Native" title="React Native">React Native</a>, which enables native <a href="/wiki/Android_(operating_system)" title="Android (operating system)">Android</a>, <a href="/wiki/IOS" title="IOS">iOS</a>, and <a href="/wiki/Universal_Windows_Platform" title="Universal Windows Platform">UWP</a> development with React, was announced at Facebook's React Conf in February 2015 and open-sourced in March 2015. </p><p>On April 18, 2017, Facebook announced React Fiber, a new set of internal algorithms for rendering, as opposed to React's old rendering algorithm, Stack.<sup id="cite_ref-28" class="reference"><a href="#cite_note-28">&#91;28&#93;</a></sup> React Fiber was to become the foundation of any future improvements and feature development of the React library.<sup id="cite_ref-29" class="reference"><a href="#cite_note-29">&#91;29&#93;</a></sup><sup class="noprint Inline-Template" style="white-space:nowrap;">&#91;<i><a href="/wiki/Wikipedia:Manual_of_Style/Dates_and_numbers#Chronological_items" title="Wikipedia:Manual of Style/Dates and numbers"><span title="Last commit was in 2016. Is this statement still true? (June 2018)">needs update</span></a></i>&#93;</sup> The actual syntax for programming with React does not change; only the way that the syntax is executed has changed.<sup id="cite_ref-techcrunch_30-0" class="reference"><a href="#cite_note-techcrunch-30">&#91;30&#93;</a></sup> React's old rendering system, Stack, was developed at a time when the focus of the system on dynamic change was not understood. Stack was slow to draw complex animation, for example, trying to accomplish all of it in one chunk. Fiber breaks down animation into segments that can be spread out over multiple frames. Likewise, the structure of a page can be broken into segments that may be maintained and updated separately. JavaScript functions and virtual <a href="/wiki/Document_Object_Model" title="Document Object Model">DOM</a> objects are called "fibers", and each can be operated and updated separately, allowing for smoother on-screen rendering.<sup id="cite_ref-github_31-0" class="reference"><a href="#cite_note-github-31">&#91;31&#93;</a></sup> </p><p>On September 26, 2017, React 16.0 was released to the public.<sup id="cite_ref-32" class="reference"><a href="#cite_note-32">&#91;32&#93;</a></sup> </p><p>On February 16, 2019, React 16.8 was released to the public.<sup id="cite_ref-33" class="reference"><a href="#cite_note-33">&#91;33&#93;</a></sup> The release introduced React Hooks.<sup id="cite_ref-34" class="reference"><a href="#cite_note-34">&#91;34&#93;</a></sup> </p><p>On August 10, 2020, the React team announced the first release candidate for React v17.0, notable as the first major release without major changes to the React developer-facing API.<sup id="cite_ref-35" class="reference"><a href="#cite_note-35">&#91;35&#93;</a></sup> </p> <table class="wikitable"> <caption>Versions </caption> <tbody><tr style="position:sticky; top:0"> <th>Version </th> <th>Release Date </th> <th>Changes </th></tr> <tr> <td>0.3.0 </td> <td>29 May 2013 </td> <td>Initial Public Release </td></tr> <tr> <td>0.4.0 </td> <td>20 July 2013 </td> <td>Support for comment nodes <code class="nowrap" style="">&lt;div&gt;{/* */}&lt;&#47;div&gt;</code>, Improved server-side rendering APIs, Removed React.autoBind, Support for the key prop, Improvements to forms, Fixed bugs. </td></tr> <tr> <td>0.5.0 </td> <td>20 October 2013 </td> <td>Improve Memory usage, Support for Selection and Composition events, Support for getInitialState and getDefaultProps in mixins, Added React.version and React.isValidClass, Improved compatibility for Windows. </td></tr> <tr> <td>0.8.0 </td> <td>20 December 2013 </td> <td>Added support for rows &amp; cols, defer &amp; async, loop for <code class="nowrap" style="">&lt;audio&gt;</code> &amp; <code class="nowrap" style="">&lt;video&gt;</code>, autoCorrect attributes. Added onContextMenu events, Upgraded jstransform and esprima-fb tools, Upgraded browserify. </td></tr> <tr> <td>0.9.0 </td> <td>20 February 2014 </td> <td>Added support for crossOrigin, download and hrefLang, mediaGroup and muted, sandbox, seamless, and srcDoc, scope attributes, Added any, arrayOf, component, oneOfType, renderable, shape to React.PropTypes, Added support for onMouseOver and onMouseOut event, Added support for onLoad and onError on <code class="nowrap" style="">&lt;img&gt;</code> elements. </td></tr> <tr> <td>0.10.0 </td> <td>21 March 2014 </td> <td>Added support for srcSet and textAnchor attributes, add update function for immutable data, Ensure all void elements don't insert a closing tag. </td></tr> <tr> <td>0.11.0 </td> <td>17 July 2014 </td> <td>Improved SVG support, Normalized e.view event, Update $apply command, Added support for namespaces, Added new transformWithDetails API, includes pre-built packages under dist/, MyComponent() now returns a descriptor, not an instance. </td></tr> <tr> <td>0.12.0 </td> <td>21 November 2014 </td> <td>Added new features Spread operator ({...}) introduced to deprecate this.transferPropsTo, Added support for acceptCharset, classID, manifest HTML attributes, React.addons.batchedUpdates added to API, @jsx React.DOM no longer required, Fixed issues with CSS Transitions. </td></tr> <tr> <td>0.13.0 </td> <td>10 March 2015 </td> <td>Deprecated patterns that warned in 0.12 no longer work, ref resolution order has changed, Removed properties this._pendingState and this._rootNodeID, Support ES6 classes, Added API React.findDOMNode(component), Support for iterators and immutable-js sequences, Added new features React.addons.createFragment, deprecated React.addons.classSet. </td></tr> <tr> <td>0.14.1 </td> <td>29 October 2015 </td> <td>Added support for srcLang, default, kind attributes, and color attribute, Ensured legacy .props access on DOM nodes, Fixed scryRenderedDOMComponentsWithClass, Added react-dom.js. </td></tr> <tr> <td>15.0.0 </td> <td>7 April 2016 </td> <td>Initial render now uses document.createElement instead of generating HTML, No more extra <code class="nowrap" style="">&lt;span&gt;</code>s, Improved SVG support, <code class="mw-highlight mw-highlight-lang-text mw-content-ltr" id="" style="" dir="ltr">ReactPerf.getLastMeasurements()</code> is opaque, New deprecations introduced with a warning, Fixed multiple small memory leaks, React DOM now supports the cite and profile HTML attributes and cssFloat, gridRow and gridColumn CSS properties. </td></tr> <tr> <td>15.1.0 </td> <td>20 May 2016 </td> <td>Fix a batching bug, Ensure use of the latest object-assign, Fix regression, Remove use of merge utility, Renamed some modules. </td></tr> <tr> <td>15.2.0 </td> <td>1 July 2016 </td> <td>Include component stack information, Stop validating props at mount time, Add React.PropTypes.symbol, Add onLoad handling to <code class="nowrap" style="">&lt;link&gt;</code> and onError handling to <code class="nowrap" style="">&lt;source&gt;</code> element, Add <code class="mw-highlight mw-highlight-lang-text mw-content-ltr" id="" style="" dir="ltr">isRunning()</code> API, Fix performance regression. </td></tr> <tr> <td>15.3.0 </td> <td>30 July 2016 </td> <td>Add React.PureComponent, Fix issue with nested server rendering, Add xmlns, xmlnsXlink to support SVG attributes and referrerPolicy to HTML attributes, updates React Perf Add-on, Fixed issue with ref. </td></tr> <tr> <td>15.3.1 </td> <td>19 August 2016 </td> <td>Improve performance of development builds, Cleanup internal hooks, Upgrade fbjs, Improve startup time of React, Fix memory leak in server rendering, fix React Test Renderer, Change trackedTouchCount invariant into a console.error. </td></tr> <tr> <td>15.4.0 </td> <td>16 November 2016 </td> <td>React package and browser build no longer includes React DOM, Improved development performance, Fixed occasional test failures, update batchedUpdates API, React Perf, and <code class="mw-highlight mw-highlight-lang-text mw-content-ltr" id="" style="" dir="ltr">ReactTestRenderer.create()</code>. </td></tr> <tr> <td>15.4.1 </td> <td>23 November 2016 </td> <td>Restructure variable assignment, Fixed event handling, Fixed compatibility of browser build with AMD environments. </td></tr> <tr> <td>15.4.2 </td> <td>6 January 2017 </td> <td>Fixed build issues, Added missing package dependencies, Improved error messages. </td></tr> <tr> <td>15.5.0 </td> <td>7 April 2017 </td> <td>Added react-dom/test-utils, Removed peerDependencies, Fixed issue with Closure Compiler, Added a deprecation warning for React.createClass and React.PropTypes, Fixed Chrome bug. </td></tr> <tr> <td>15.5.4 </td> <td>11 April 2017 </td> <td>Fix compatibility with Enzyme by exposing batchedUpdates on shallow renderer, Update version of prop-types, Fix react-addons-create-fragment package to include loose-envify transform. </td></tr> <tr> <td>15.6.0 </td> <td>13 June 2017 </td> <td>Add support for CSS variables in style attribute and Grid style properties, Fix AMD support for addons depending on react, Remove unnecessary dependency, Add a deprecation warning for React.createClass and React.DOM factory helpers. </td></tr> <tr> <td>16.0.0 </td> <td>26 September 2017 </td> <td>Improved error handling with introduction of "error boundaries", React DOM allows passing non-standard attributes, Minor changes to setState behavior, remove react-with-addons.js build, Add React.createClass as create-react-class, React.PropTypes as prop-types, React.DOM as react-dom-factories, changes to the behavior of scheduling and lifecycle methods. </td></tr> <tr> <td>16.1.0 </td> <td>9 November 2017 </td> <td>Discontinuing Bower Releases, Fix an accidental extra global variable in the UMD builds, Fix onMouseEnter and onMouseLeave firing, Fix &lt;textarea&gt; placeholder, Remove unused code, Add a missing package.json dependency, Add support for React DevTools. </td></tr> <tr> <td>16.3.0 </td> <td>29 March 2018 </td> <td>Add a new officially supported context API, Add new packagePrevent an infinite loop when attempting to render portals with SSR, Fix an issue with this.state, Fix an IE/Edge issue. </td></tr> <tr> <td>16.3.1 </td> <td>3 April 2018 </td> <td>Prefix private API, Fix performance regression and error handling bugs in development mode, Add peer dependency, Fix a false positive warning in IE11 when using Fragment. </td></tr> <tr> <td>16.3.2 </td> <td>16 April 2018 </td> <td>Fix an IE crash, Fix labels in User Timing measurements, Add a UMD build, Improve performance of unstable_observedBits API with nesting. </td></tr> <tr> <td>16.4.0 </td> <td>24 May 2018 </td> <td>Add support for Pointer Events specification, Add the ability to specify propTypes, Fix reading context, Fix the <code class="mw-highlight mw-highlight-lang-text mw-content-ltr" id="" style="" dir="ltr">getDerivedStateFromProps()</code> support, Fix a testInstance.parent crash, Add React.unstable_Profiler component for measuring performance, Change internal event names. </td></tr> <tr> <td>16.5.0 </td> <td>5 September 2018 </td> <td>Add support for React DevTools Profiler, Handle errors in more edge cases gracefully, Add react-dom/profiling, Add onAuxClick event for browsers, Add movementX and movementY fields to mouse events, Add tangentialPressure and twist fields to pointer event. </td></tr> <tr> <td>16.6.0 </td> <td>23 October 2018 </td> <td>Add support for contextType, Support priority levels, continuations, and wrapped callbacks, Improve the fallback mechanism, Fix gray overlay on iOS Safari, Add <code class="mw-highlight mw-highlight-lang-text mw-content-ltr" id="" style="" dir="ltr">React.lazy()</code> for code splitting components. </td></tr> <tr> <td>16.7.0 </td> <td>20 December 2018 </td> <td>Fix performance of React.lazy for lazily-loaded components, Clear fields on unmount to avoid memory leaks, Fix bug with SSR, Fix a performance regression. </td></tr> <tr> <td>16.8.0 </td> <td>6 February 2019 </td> <td>Add Hooks, Add <code class="mw-highlight mw-highlight-lang-text mw-content-ltr" id="" style="" dir="ltr">ReactTestRenderer.act()</code> and <code class="mw-highlight mw-highlight-lang-text mw-content-ltr" id="" style="" dir="ltr">ReactTestUtils.act()</code> for batching updates, Support synchronous thenables passed to React.lazy(), Improve useReducer Hook lazy initialization API. </td></tr> <tr> <td>16.8.6 </td> <td>27 March 2019 </td> <td>Fix an incorrect bailout in useReducer(), Fix iframe warnings in Safari DevTools, Warn if contextType is set to Context.Consumer instead of Context, Warn if contextType is set to invalid values. </td></tr> <tr> <td>16.9.0 </td> <td>9 August 2019 </td> <td>Add <style data-mw-deduplicate="TemplateStyles:r886049734">.mw-parser-output .monospaced{font-family:monospace,monospace}</style><span class="monospaced">React.Profiler</span> API for gathering performance measurements programmatically. Remove unstable_ConcurrentMode in favor of unstable_createRoot </td></tr> <tr> <td>16.10.0 </td> <td>27 September 2019 </td> <td>Fix edge case where a hook update wasn't being memoized. Fix heuristic for determining when to hydrate, so we don't incorrectly hydrate during an update. Clear additional fiber fields during unmount to save memory. Fix bug with required text fields in Firefox. Prefer Object.is instead of inline polyfill, when available. Fix bug when mixing Suspense and error handling. </td></tr> <tr> <td>16.10.1 </td> <td>28 September 2019 </td> <td>Fix regression in Next.js apps by allowing Suspense mismatch during hydration to silently proceed </td></tr> <tr> <td>16.10.2 </td> <td>3 October 2019 </td> <td>Fix regression in react-native-web by restoring order of arguments in event plugin extractors </td></tr> <tr> <td>16.11.0 </td> <td>22 October 2019 </td> <td>Fix mouseenter handlers from firing twice inside nested React containers. Remove unstable_createRoot and unstable_createSyncRoot experimental APIs. (These are available in the Experimental channel as createRoot and createSyncRoot.) </td></tr> <tr> <td>16.12.0 </td> <td>14 November 2019 </td> <td>React DOM - Fix passive effects (<code>useEffect</code>) not being fired in a multi-root app. <p>React Is - Fix <code>lazy</code> and <code>memo</code> types considered elements instead of components </p> </td></tr> <tr> <td>16.13.0 </td> <td>26 February 2020 </td> <td>Features added in React Concurrent mode. <p>Fix regressions in React core library and React Dom. </p> </td></tr> <tr> <td>16.13.1 </td> <td>19 March 2020 </td> <td>Fix bug in legacy mode Suspense. <p>Revert warning for cross-component updates that happen inside class render lifecycles </p> </td></tr> <tr> <td>16.14.0 </td> <td>14 October 2020 </td> <td>Add support for the new JSX transform. </td></tr> <tr> <td>17.0.0 </td> <td>20 October 2020 </td> <td>"No New Features" enables gradual React updates from older versions. <p>Add new JSX Transform, Changes to Event Delegation </p> </td></tr> <tr> <td>17.0.1 </td> <td>22 October 2020 </td> <td>React DOM - Fixes a crash in IE11 </td></tr> <tr> <td>17.0.2 </td> <td>22 March 2021 </td> <td>React DOM - Remove an unused dependency to address the <code>SharedArrayBuffer</code> cross-origin isolation warning. </td></tr> <tr> <td>18.0.0 </td> <td>29 March 2022 </td> <td>Concurrent React, Automatic batching, New Suspense Features, Transitions, Client and Server Rendering APIs, New Strict Mode Behaviors, New Hooks <sup id="cite_ref-36" class="reference"><a href="#cite_note-36">&#91;36&#93;</a></sup> </td></tr> <tr> <td>18.1.0 </td> <td>26 April 2022 </td> <td>Many fixes and performance improvements </td></tr> <tr> <td>18.1.2 </td> <td>14 June 2022 </td> <td>Many more fixes and performance improvements </td></tr></tbody></table> <h2><span class="mw-headline" id="Licensing">Licensing</span></h2> The initial public release of React in May 2013 used the <a href="/wiki/Apache_License_2.0" class="mw-redirect" title="Apache License 2.0">Apache License 2.0</a>. In October 2014, React 0.12.0 replaced this with the <a href="/wiki/BSD_licenses#3-clause" title="BSD licenses">3-clause BSD license</a> and added a separate PATENTS text file that permits usage of any Facebook patents related to the software:<sup id="cite_ref-37" class="reference"><a href="#cite_note-37">&#91;37&#93;</a></sup><blockquote><p>The license granted hereunder will terminate, automatically and without notice, for anyone that makes any claim (including by filing any lawsuit, assertion or other action) alleging (a) direct, indirect, or contributory infringement or inducement to infringe any patent: (i) by Facebook or any of its subsidiaries or affiliates, whether or not such claim is related to the Software, (ii) by any party if such claim arises in whole or in part from any software, product or service of Facebook or any of its subsidiaries or affiliates, whether or not such claim is related to the Software, or (iii) by any party relating to the Software; or (b) that any right in any patent claim of Facebook is invalid or unenforceable.</p></blockquote>This unconventional clause caused some controversy and debate in the React user community, because it could be interpreted to empower Facebook to revoke the license in many scenarios, for example, if Facebook sues the licensee prompting them to take "other action" by publishing the action on a blog or elsewhere. Many expressed concerns that Facebook could unfairly exploit the termination clause or that integrating React into a product might complicate a startup company's future acquisition.<sup id="cite_ref-38" class="reference"><a href="#cite_note-38">&#91;38&#93;</a></sup> <p>Based on community feedback, Facebook updated the patent grant in April 2015 to be less ambiguous and more permissive:<sup id="cite_ref-39" class="reference"><a href="#cite_note-39">&#91;39&#93;</a></sup> </p> <blockquote><p>The license granted hereunder will terminate, automatically and without notice, if you (or any of your subsidiaries, corporate affiliates or agents) initiate directly or indirectly, or take a direct financial interest in, any Patent Assertion: (i) against Facebook or any of its subsidiaries or corporate affiliates, (ii) against any party if such Patent Assertion arises in whole or in part from any software, technology, product or service of Facebook or any of its subsidiaries or corporate affiliates, or (iii) against any party relating to the Software. [...] A "Patent Assertion" is any lawsuit or other action alleging direct, indirect, or contributory infringement or inducement to infringe any patent, including a cross-claim or counterclaim.<sup id="cite_ref-40" class="reference"><a href="#cite_note-40">&#91;40&#93;</a></sup></p></blockquote> <p>The <a href="/wiki/Apache_Software_Foundation" class="mw-redirect" title="Apache Software Foundation">Apache Software Foundation</a> considered this licensing arrangement to be incompatible with its licensing policies, as it "passes along risk to downstream consumers of our software imbalanced in favor of the licensor, not the licensee, thereby violating our Apache legal policy of being a universal donor", and "are not a subset of those found in the [Apache License 2.0], and they cannot be sublicensed as [Apache License 2.0]".<sup id="cite_ref-41" class="reference"><a href="#cite_note-41">&#91;41&#93;</a></sup> In August 2017, Facebook dismissed the Apache Foundation's downstream concerns and refused to reconsider their license.<sup id="cite_ref-42" class="reference"><a href="#cite_note-42">&#91;42&#93;</a></sup><sup id="cite_ref-43" class="reference"><a href="#cite_note-43">&#91;43&#93;</a></sup> The following month, <a href="/wiki/WordPress" title="WordPress">WordPress</a> decided to switch its Gutenberg and Calypso projects away from React.<sup id="cite_ref-44" class="reference"><a href="#cite_note-44">&#91;44&#93;</a></sup> </p><p>On September 23, 2017, Facebook announced that the following week, it would re-license Flow, <a href="/wiki/Jest_(JavaScript_framework)" title="Jest (JavaScript framework)">Jest</a>, React, and Immutable.js under a standard <a href="/wiki/MIT_License" title="MIT License">MIT License</a>; the company stated that React was "the foundation of a broad ecosystem of open source software for the web", and that they did not want to "hold back forward progress for nontechnical reasons".<sup id="cite_ref-45" class="reference"><a href="#cite_note-45">&#91;45&#93;</a></sup> </p><p>On September 26, 2017, React 16.0.0 was released with the MIT license.<sup id="cite_ref-46" class="reference"><a href="#cite_note-46">&#91;46&#93;</a></sup> The MIT license change has also been backported to the 15.x release line with React 15.6.2.<sup id="cite_ref-47" class="reference"><a href="#cite_note-47">&#91;47&#93;</a></sup> </p> <h2><span class="mw-headline" id="See_also">See also</span></h2> <style data-mw-deduplicate="TemplateStyles:r1093669538">.mw-parser-output .portalbox{padding:0}.mw-parser-output .portalborder{border:solid #aaa 1px}.mw-parser-output .portalbox.tleft{margin:0.5em 1em 0.5em 0}.mw-parser-output .portalbox.tright{margin:0.5em 0 0.5em 1em}.mw-parser-output .portalbox>ul{display:table;box-sizing:border-box;max-width:175px;font-size:85%;line-height:110%;font-style:italic;font-weight:bold}.mw-parser-output .portalborder>ul{padding:0.1em;background:#f9f9f9}.mw-parser-output .portalbox>ul>li{display:table-row}.mw-parser-output .portalbox>ul>li>span:first-child{display:table-cell;padding:0.2em;vertical-align:middle;text-align:center}.mw-parser-output .portalbox>ul>li>span:last-child{display:table-cell;padding:0.2em 0.2em 0.2em 0.3em;vertical-align:middle}</style><div role="navigation" aria-label="Portals" class="noprint plainlist portalbox portalborder tright"> <ul> <li><span><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/31/Free_and_open-source_software_logo_%282009%29.svg/28px-Free_and_open-source_software_logo_%282009%29.svg.png" decoding="async" width="28" height="28" class="noviewer" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/31/Free_and_open-source_software_logo_%282009%29.svg/42px-Free_and_open-source_software_logo_%282009%29.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/31/Free_and_open-source_software_logo_%282009%29.svg/56px-Free_and_open-source_software_logo_%282009%29.svg.png 2x" data-file-width="512" data-file-height="512" /></span><span><a href="/wiki/Portal:Free_and_open-source_software" title="Portal:Free and open-source software">Free and open-source software portal</a></span></li></ul></div> <ul><li><a href="/wiki/Angular_(web_framework)" title="Angular (web framework)">Angular (web framework)</a></li> <li><a href="/wiki/Backbone.js" title="Backbone.js">Backbone.js</a></li> <li><a href="/wiki/Ember.js" title="Ember.js">Ember.js</a></li> <li><a href="/wiki/Gatsby_(JavaScript_framework)" title="Gatsby (JavaScript framework)">Gatsby (JavaScript framework)</a></li> <li><a href="/wiki/Next.js" title="Next.js">Next.js</a></li> <li><a href="/wiki/Svelte" title="Svelte">Svelte</a></li> <li><a href="/wiki/Vue.js" title="Vue.js">Vue.js</a></li> <li><a href="/wiki/Comparison_of_JavaScript_libraries" class="mw-redirect" title="Comparison of JavaScript libraries">Comparison of JavaScript libraries</a></li> <li><a href="/wiki/Web_Components" title="Web Components">Web Components</a></li></ul> <h2><span class="mw-headline" id="References">References</span></h2> <style data-mw-deduplicate="TemplateStyles:r1011085734">.mw-parser-output .reflist{font-size:90%;margin-bottom:0.5em;list-style-type:decimal}.mw-parser-output .reflist .references{font-size:100%;margin-bottom:0;list-style-type:inherit}.mw-parser-output .reflist-columns-2{column-width:30em}.mw-parser-output .reflist-columns-3{column-width:25em}.mw-parser-output .reflist-columns{margin-top:0.3em}.mw-parser-output .reflist-columns ol{margin-top:0}.mw-parser-output .reflist-columns li{page-break-inside:avoid;break-inside:avoid-column}.mw-parser-output .reflist-upper-alpha{list-style-type:upper-alpha}.mw-parser-output .reflist-upper-roman{list-style-type:upper-roman}.mw-parser-output .reflist-lower-alpha{list-style-type:lower-alpha}.mw-parser-output .reflist-lower-greek{list-style-type:lower-greek}.mw-parser-output .reflist-lower-roman{list-style-type:lower-roman}</style><div class="reflist reflist-columns references-column-width reflist-columns-2"> <ol class="references"> <li id="cite_note-schwarzmüller-1"><span class="mw-cite-backlink"><b><a href="#cite_ref-schwarzmüller_1-0">^</a></b></span> <span class="reference-text"><style data-mw-deduplicate="TemplateStyles:r1067248974">.mw-parser-output cite.citation{font-style:inherit;word-wrap:break-word}.mw-parser-output .citation q{quotes:"\"""\"""'""'"}.mw-parser-output .citation:target{background-color:rgba(0,127,255,0.133)}.mw-parser-output .id-lock-free a,.mw-parser-output .citation .cs1-lock-free a{background:linear-gradient(transparent,transparent),url("//upload.wikimedia.org/wikipedia/commons/6/65/Lock-green.svg")right 0.1em center/9px no-repeat}.mw-parser-output .id-lock-limited a,.mw-parser-output .id-lock-registration a,.mw-parser-output .citation .cs1-lock-limited a,.mw-parser-output .citation .cs1-lock-registration a{background:linear-gradient(transparent,transparent),url("//upload.wikimedia.org/wikipedia/commons/d/d6/Lock-gray-alt-2.svg")right 0.1em center/9px no-repeat}.mw-parser-output .id-lock-subscription a,.mw-parser-output .citation .cs1-lock-subscription a{background:linear-gradient(transparent,transparent),url("//upload.wikimedia.org/wikipedia/commons/a/aa/Lock-red-alt-2.svg")right 0.1em center/9px no-repeat}.mw-parser-output .cs1-ws-icon a{background:linear-gradient(transparent,transparent),url("//upload.wikimedia.org/wikipedia/commons/4/4c/Wikisource-logo.svg")right 0.1em center/12px no-repeat}.mw-parser-output .cs1-code{color:inherit;background:inherit;border:none;padding:inherit}.mw-parser-output .cs1-hidden-error{display:none;color:#d33}.mw-parser-output .cs1-visible-error{color:#d33}.mw-parser-output .cs1-maint{display:none;color:#3a3;margin-left:0.3em}.mw-parser-output .cs1-format{font-size:95%}.mw-parser-output .cs1-kern-left{padding-left:0.2em}.mw-parser-output .cs1-kern-right{padding-right:0.2em}.mw-parser-output .citation .mw-selflink{font-weight:inherit}</style><cite id="CITEREFSchwarzmüller2018" class="citation web cs1">Schwarzmüller, Max (2018-05-01). <a rel="nofollow" class="external text" href="https://www.oreilly.com/library/view/react-the/9781789132229/">"React - The Complete Guide"</a>. <i><a href="/wiki/O%27Reilly_Media" title="O&#39;Reilly Media">O'Reilly</a></i>. <a href="/wiki/Packt_Publishing" class="mw-redirect" title="Packt Publishing">Packt Publishing</a><span class="reference-accessdate">. Retrieved <span class="nowrap">19 February</span> 2022</span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=O%27Reilly&amp;rft.atitle=React+-+The+Complete+Guide&amp;rft.date=2018-05-01&amp;rft.aulast=Schwarzm%C3%BCller&amp;rft.aufirst=Max&amp;rft_id=https%3A%2F%2Fwww.oreilly.com%2Flibrary%2Fview%2Freact-the%2F9781789132229%2F&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span><span class="cs1-maint citation-comment"><code class="cs1-code">{{<a href="/wiki/Template:Cite_web" title="Template:Cite web">cite web</a>}}</code>: CS1 maint: url-status (<a href="/wiki/Category:CS1_maint:_url-status" title="Category:CS1 maint: url-status">link</a>)</span></span> </li> <li id="cite_note-2"><span class="mw-cite-backlink"><b><a href="#cite_ref-2">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://reactjs.org/docs/components-and-props.html#props-are-read-only">"Components and Props"</a>. <i>React</i>. Facebook<span class="reference-accessdate">. Retrieved <span class="nowrap">7 April</span> 2018</span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=React&amp;rft.atitle=Components+and+Props&amp;rft_id=https%3A%2F%2Freactjs.org%2Fdocs%2Fcomponents-and-props.html%23props-are-read-only&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span><span class="cs1-maint citation-comment"><code class="cs1-code">{{<a href="/wiki/Template:Cite_web" title="Template:Cite web">cite web</a>}}</code>: CS1 maint: url-status (<a href="/wiki/Category:CS1_maint:_url-status" title="Category:CS1 maint: url-status">link</a>)</span></span> </li> <li id="cite_note-workingwiththebrowser-3"><span class="mw-cite-backlink"><b><a href="#cite_ref-workingwiththebrowser_3-0">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://reactjs.org/docs/refs-and-the-dom.html">"Refs and the DOM"</a>. <i>React Blog</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2021-07-19</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=React+Blog&amp;rft.atitle=Refs+and+the+DOM&amp;rft_id=https%3A%2F%2Freactjs.org%2Fdocs%2Frefs-and-the-dom.html&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span><span class="cs1-maint citation-comment"><code class="cs1-code">{{<a href="/wiki/Template:Cite_web" title="Template:Cite web">cite web</a>}}</code>: CS1 maint: url-status (<a href="/wiki/Category:CS1_maint:_url-status" title="Category:CS1 maint: url-status">link</a>)</span></span> </li> <li id="cite_note-:0-4"><span class="mw-cite-backlink">^ <a href="#cite_ref-:0_4-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-:0_4-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.codecademy.com/articles/react-virtual-dom">"React: The Virtual DOM"</a>. <i>Codecademy</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2021-10-14</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=Codecademy&amp;rft.atitle=React%3A+The+Virtual+DOM&amp;rft_id=https%3A%2F%2Fwww.codecademy.com%2Farticles%2Freact-virtual-dom&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span><span class="cs1-maint citation-comment"><code class="cs1-code">{{<a href="/wiki/Template:Cite_web" title="Template:Cite web">cite web</a>}}</code>: CS1 maint: url-status (<a href="/wiki/Category:CS1_maint:_url-status" title="Category:CS1 maint: url-status">link</a>)</span></span> </li> <li id="cite_note-5"><span class="mw-cite-backlink"><b><a href="#cite_ref-5">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://facebook.github.io/jsx/">"Draft: JSX Specification"</a>. <i>JSX</i>. Facebook. 2022-03-08<span class="reference-accessdate">. Retrieved <span class="nowrap">7 April</span> 2018</span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=JSX&amp;rft.atitle=Draft%3A+JSX+Specification&amp;rft.date=2022-03-08&amp;rft_id=https%3A%2F%2Ffacebook.github.io%2Fjsx%2F&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span><span class="cs1-maint citation-comment"><code class="cs1-code">{{<a href="/wiki/Template:Cite_web" title="Template:Cite web">cite web</a>}}</code>: CS1 maint: url-status (<a href="/wiki/Category:CS1_maint:_url-status" title="Category:CS1 maint: url-status">link</a>)</span></span> </li> <li id="cite_note-6"><span class="mw-cite-backlink"><b><a href="#cite_ref-6">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite id="CITEREFHunt2013" class="citation web cs1">Hunt, Pete (2013-06-05). <a rel="nofollow" class="external text" href="https://facebook.github.io/react/blog/2013/06/05/why-react.html">"Why did we build React? – React Blog"</a>. <i>reactjs.org</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2022-02-17</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=reactjs.org&amp;rft.atitle=Why+did+we+build+React%3F+%E2%80%93+React+Blog&amp;rft.date=2013-06-05&amp;rft.aulast=Hunt&amp;rft.aufirst=Pete&amp;rft_id=https%3A%2F%2Ffacebook.github.io%2Freact%2Fblog%2F2013%2F06%2F05%2Fwhy-react.html&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span><span class="cs1-maint citation-comment"><code class="cs1-code">{{<a href="/wiki/Template:Cite_web" title="Template:Cite web">cite web</a>}}</code>: CS1 maint: url-status (<a href="/wiki/Category:CS1_maint:_url-status" title="Category:CS1 maint: url-status">link</a>)</span></span> </li> <li id="cite_note-paypal-isomorphic-reactjs-7"><span class="mw-cite-backlink"><b><a href="#cite_ref-paypal-isomorphic-reactjs_7-0">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://medium.com/paypal-engineering/isomorphic-react-apps-with-react-engine-17dae662379c">"PayPal Isomorphic React"</a>. <i>medium.com</i>. 2015-04-27. <a rel="nofollow" class="external text" href="https://web.archive.org/web/20190208124143/https://www.paypal-engineering.com/2015/04/27/isomorphic-react-apps-with-react-engine/">Archived</a> from the original on 2019-02-08<span class="reference-accessdate">. Retrieved <span class="nowrap">2019-02-08</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=medium.com&amp;rft.atitle=PayPal+Isomorphic+React&amp;rft.date=2015-04-27&amp;rft_id=https%3A%2F%2Fmedium.com%2Fpaypal-engineering%2Fisomorphic-react-apps-with-react-engine-17dae662379c&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-netflix-isomorphic-reactjs-8"><span class="mw-cite-backlink"><b><a href="#cite_ref-netflix-isomorphic-reactjs_8-0">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="http://techblog.netflix.com/2015/01/netflix-likes-react.html">"Netflix Isomorphic React"</a>. <i>netflixtechblog.com</i>. 2015-01-28<span class="reference-accessdate">. Retrieved <span class="nowrap">2022-02-14</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=netflixtechblog.com&amp;rft.atitle=Netflix+Isomorphic+React&amp;rft.date=2015-01-28&amp;rft_id=http%3A%2F%2Ftechblog.netflix.com%2F2015%2F01%2Fnetflix-likes-react.html&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span><span class="cs1-maint citation-comment"><code class="cs1-code">{{<a href="/wiki/Template:Cite_web" title="Template:Cite web">cite web</a>}}</code>: CS1 maint: url-status (<a href="/wiki/Category:CS1_maint:_url-status" title="Category:CS1 maint: url-status">link</a>)</span></span> </li> <li id="cite_note-9"><span class="mw-cite-backlink"><b><a href="#cite_ref-9">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://reactjs.org/docs/hooks-overview.html">"Hooks at a Glance – React"</a>. <i>reactjs.org</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2019-08-08</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=reactjs.org&amp;rft.atitle=Hooks+at+a+Glance+%E2%80%93+React&amp;rft_id=https%3A%2F%2Freactjs.org%2Fdocs%2Fhooks-overview.html&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-10"><span class="mw-cite-backlink"><b><a href="#cite_ref-10">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://blog.soshace.com/what-the-heck-is-react-hooks/">"What the Heck is React Hooks?"</a>. <i>Soshace</i>. 2020-01-16<span class="reference-accessdate">. Retrieved <span class="nowrap">2020-01-24</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=Soshace&amp;rft.atitle=What+the+Heck+is+React+Hooks%3F&amp;rft.date=2020-01-16&amp;rft_id=https%3A%2F%2Fblog.soshace.com%2Fwhat-the-heck-is-react-hooks%2F&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-11"><span class="mw-cite-backlink"><b><a href="#cite_ref-11">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://reactjs.org/docs/hooks-state.html">"Using the State Hook – React"</a>. <i>reactjs.org</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2020-01-24</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=reactjs.org&amp;rft.atitle=Using+the+State+Hook+%E2%80%93+React&amp;rft_id=https%3A%2F%2Freactjs.org%2Fdocs%2Fhooks-state.html&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-12"><span class="mw-cite-backlink"><b><a href="#cite_ref-12">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://reactjs.org/docs/hooks-effect.html">"Using the Effect Hook – React"</a>. <i>reactjs.org</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2020-01-24</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=reactjs.org&amp;rft.atitle=Using+the+Effect+Hook+%E2%80%93+React&amp;rft_id=https%3A%2F%2Freactjs.org%2Fdocs%2Fhooks-effect.html&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-13"><span class="mw-cite-backlink"><b><a href="#cite_ref-13">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://reactjs.org/docs/hooks-reference.html">"Hooks API Reference – React"</a>. <i>reactjs.org</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2020-01-24</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=reactjs.org&amp;rft.atitle=Hooks+API+Reference+%E2%80%93+React&amp;rft_id=https%3A%2F%2Freactjs.org%2Fdocs%2Fhooks-reference.html&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-14"><span class="mw-cite-backlink"><b><a href="#cite_ref-14">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://reactjs.org/docs/hooks-rules.html">"Rules of Hooks – React"</a>. <i>reactjs.org</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2020-01-24</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=reactjs.org&amp;rft.atitle=Rules+of+Hooks+%E2%80%93+React&amp;rft_id=https%3A%2F%2Freactjs.org%2Fdocs%2Fhooks-rules.html&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-15"><span class="mw-cite-backlink"><b><a href="#cite_ref-15">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://reactjs.org/docs/hooks-custom.html">"Building Your Own Hooks – React"</a>. <i>reactjs.org</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2020-01-24</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=reactjs.org&amp;rft.atitle=Building+Your+Own+Hooks+%E2%80%93+React&amp;rft_id=https%3A%2F%2Freactjs.org%2Fdocs%2Fhooks-custom.html&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-react-16"><span class="mw-cite-backlink"><b><a href="#cite_ref-react_16-0">^</a></b></span> <span class="error mw-ext-cite-error" lang="en" dir="ltr">Cite error: The named reference <code>react</code> was invoked but never defined (see the <a href="/wiki/Help:Cite_errors/Cite_error_references_no_text" title="Help:Cite errors/Cite error references no text">help page</a>).</span></li> <li id="cite_note-flux-17"><span class="mw-cite-backlink"><b><a href="#cite_ref-flux_17-0">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://facebook.github.io/flux/docs/in-depth-overview">"In Depth OverView"</a>. <i>Flux</i>. Facebook<span class="reference-accessdate">. Retrieved <span class="nowrap">7 April</span> 2018</span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=Flux&amp;rft.atitle=In+Depth+OverView&amp;rft_id=https%3A%2F%2Ffacebook.github.io%2Fflux%2Fdocs%2Fin-depth-overview&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-18"><span class="mw-cite-backlink"><b><a href="#cite_ref-18">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://github.com/facebook/flux/releases/tag/4.0.0">"Flux Release 4.0"</a>. <i>Github</i><span class="reference-accessdate">. Retrieved <span class="nowrap">26 February</span> 2021</span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=Github&amp;rft.atitle=Flux+Release+4.0&amp;rft_id=https%3A%2F%2Fgithub.com%2Ffacebook%2Fflux%2Freleases%2Ftag%2F4.0.0&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-19"><span class="mw-cite-backlink"><b><a href="#cite_ref-19">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite id="CITEREFJohnson" class="citation web cs1">Johnson, Nicholas. <a rel="nofollow" class="external text" href="http://nicholasjohnson.com/react/course/exercises/flux/">"Introduction to Flux - React Exercise"</a>. <i>Nicholas Johnson</i><span class="reference-accessdate">. Retrieved <span class="nowrap">7 April</span> 2018</span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=Nicholas+Johnson&amp;rft.atitle=Introduction+to+Flux+-+React+Exercise&amp;rft.aulast=Johnson&amp;rft.aufirst=Nicholas&amp;rft_id=http%3A%2F%2Fnicholasjohnson.com%2Freact%2Fcourse%2Fexercises%2Fflux%2F&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-20"><span class="mw-cite-backlink"><b><a href="#cite_ref-20">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite id="CITEREFAbramov" class="citation web cs1">Abramov, Dan. <a rel="nofollow" class="external text" href="http://threedevsandamaybe.com/the-history-of-react-and-flux-with-dan-abramov/">"The History of React and Flux with Dan Abramov"</a>. <i>Three Devs and a Maybe</i><span class="reference-accessdate">. Retrieved <span class="nowrap">7 April</span> 2018</span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=Three+Devs+and+a+Maybe&amp;rft.atitle=The+History+of+React+and+Flux+with+Dan+Abramov&amp;rft.aulast=Abramov&amp;rft.aufirst=Dan&amp;rft_id=http%3A%2F%2Fthreedevsandamaybe.com%2Fthe-history-of-react-and-flux-with-dan-abramov%2F&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-21"><span class="mw-cite-backlink"><b><a href="#cite_ref-21">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="http://2016.stateofjs.com/2016/statemanagement/">"State Management Tools - Results"</a>. <i>The State of JavaScript</i><span class="reference-accessdate">. Retrieved <span class="nowrap">29 October</span> 2021</span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=The+State+of+JavaScript&amp;rft.atitle=State+Management+Tools+-+Results&amp;rft_id=http%3A%2F%2F2016.stateofjs.com%2F2016%2Fstatemanagement%2F&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-22"><span class="mw-cite-backlink"><b><a href="#cite_ref-22">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://discuss.reactjs.org/c/meeting-notes">"Meeting Notes"</a>. <i>React Discuss</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2015-12-13</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=React+Discuss&amp;rft.atitle=Meeting+Notes&amp;rft_id=https%3A%2F%2Fdiscuss.reactjs.org%2Fc%2Fmeeting-notes&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-23"><span class="mw-cite-backlink"><b><a href="#cite_ref-23">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://github.com/reactjs/react-future">"reactjs/react-future - The Future of React"</a>. <i>GitHub</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2015-12-13</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=GitHub&amp;rft.atitle=reactjs%2Freact-future+-+The+Future+of+React&amp;rft_id=https%3A%2F%2Fgithub.com%2Freactjs%2Freact-future&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-24"><span class="mw-cite-backlink"><b><a href="#cite_ref-24">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://github.com/facebook/react/labels/Type:%20Feature%20Request">"facebook/react - Feature request issues"</a>. <i>GitHub</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2015-12-13</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=GitHub&amp;rft.atitle=facebook%2Freact+-+Feature+request+issues&amp;rft_id=https%3A%2F%2Fgithub.com%2Ffacebook%2Freact%2Flabels%2FType%3A%2520Feature%2520Request&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-25"><span class="mw-cite-backlink"><b><a href="#cite_ref-25">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite id="CITEREFWalke" class="citation web cs1">Walke, Jordan. <a rel="nofollow" class="external text" href="https://github.com/jordwalke/FaxJs">"FaxJS"</a><span class="reference-accessdate">. Retrieved <span class="nowrap">11 July</span> 2019</span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=FaxJS&amp;rft.aulast=Walke&amp;rft.aufirst=Jordan&amp;rft_id=https%3A%2F%2Fgithub.com%2Fjordwalke%2FFaxJs&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-papp-26"><span class="mw-cite-backlink">^ <a href="#cite_ref-papp_26-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-papp_26-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite id="CITEREFPapp2018" class="citation news cs1">Papp, Andrea (4 April 2018). <a rel="nofollow" class="external text" href="https://blog.risingstack.com/the-history-of-react-js-on-a-timeline/">"The History of React.js on a Timeline"</a>. <i>RisingStack</i><span class="reference-accessdate">. Retrieved <span class="nowrap">11 July</span> 2019</span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=article&amp;rft.jtitle=RisingStack&amp;rft.atitle=The+History+of+React.js+on+a+Timeline&amp;rft.date=2018-04-04&amp;rft.aulast=Papp&amp;rft.aufirst=Andrea&amp;rft_id=https%3A%2F%2Fblog.risingstack.com%2Fthe-history-of-react-js-on-a-timeline%2F&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-27"><span class="mw-cite-backlink"><b><a href="#cite_ref-27">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.youtube.com/watch?v=A0Kj49z6WdM">"Pete Hunt at TXJS"</a>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=Pete+Hunt+at+TXJS&amp;rft_id=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DA0Kj49z6WdM&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-28"><span class="mw-cite-backlink"><b><a href="#cite_ref-28">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite id="CITEREFLardinois2017" class="citation news cs1">Lardinois, Frederic (18 April 2017). <a rel="nofollow" class="external text" href="https://techcrunch.com/2017/04/18/facebook-announces-react-fiber-a-rewrite-of-its-react-framework/">"Facebook announces React Fiber, a rewrite of its React library"</a>. TechCrunch<span class="reference-accessdate">. Retrieved <span class="nowrap">19 April</span> 2017</span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=article&amp;rft.atitle=Facebook+announces+React+Fiber%2C+a+rewrite+of+its+React+library&amp;rft.date=2017-04-18&amp;rft.aulast=Lardinois&amp;rft.aufirst=Frederic&amp;rft_id=https%3A%2F%2Ftechcrunch.com%2F2017%2F04%2F18%2Ffacebook-announces-react-fiber-a-rewrite-of-its-react-framework%2F&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-29"><span class="mw-cite-backlink"><b><a href="#cite_ref-29">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://github.com/acdlite/react-fiber-architecture">"React Fiber Architecture"</a>. <i>Github</i><span class="reference-accessdate">. Retrieved <span class="nowrap">19 April</span> 2017</span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=Github&amp;rft.atitle=React+Fiber+Architecture&amp;rft_id=https%3A%2F%2Fgithub.com%2Facdlite%2Freact-fiber-architecture&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-techcrunch-30"><span class="mw-cite-backlink"><b><a href="#cite_ref-techcrunch_30-0">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://techcrunch.com/2017/04/18/facebook-announces-react-fiber-a-rewrite-of-its-react-framework/">"Facebook announces React Fiber, a rewrite of its React framework"</a>. <i>TechCrunch</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2018-10-19</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=TechCrunch&amp;rft.atitle=Facebook+announces+React+Fiber%2C+a+rewrite+of+its+React+framework&amp;rft_id=https%3A%2F%2Ftechcrunch.com%2F2017%2F04%2F18%2Ffacebook-announces-react-fiber-a-rewrite-of-its-react-framework%2F&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-github-31"><span class="mw-cite-backlink"><b><a href="#cite_ref-github_31-0">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://github.com/acdlite/react-fiber-architecture">"GitHub - acdlite/react-fiber-architecture: A description of React's new core algorithm, React Fiber"</a>. <i>github.com</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2018-10-19</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=github.com&amp;rft.atitle=GitHub+-+acdlite%2Freact-fiber-architecture%3A+A+description+of+React%27s+new+core+algorithm%2C+React+Fiber&amp;rft_id=https%3A%2F%2Fgithub.com%2Facdlite%2Freact-fiber-architecture&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-32"><span class="mw-cite-backlink"><b><a href="#cite_ref-32">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://reactjs.org/blog/2017/09/26/react-v16.0.html">"React v16.0"</a>. react.js. 2017-09-26<span class="reference-accessdate">. Retrieved <span class="nowrap">2019-05-20</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=React+v16.0&amp;rft.pub=react.js&amp;rft.date=2017-09-26&amp;rft_id=https%3A%2F%2Freactjs.org%2Fblog%2F2017%2F09%2F26%2Freact-v16.0.html&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-33"><span class="mw-cite-backlink"><b><a href="#cite_ref-33">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://reactjs.org/blog/2017/09/26/react-v16.0.html">"React v16.8"</a>. react.js. 2019-02-16<span class="reference-accessdate">. Retrieved <span class="nowrap">2019-05-20</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=React+v16.8&amp;rft.pub=react.js&amp;rft.date=2019-02-16&amp;rft_id=https%3A%2F%2Freactjs.org%2Fblog%2F2017%2F09%2F26%2Freact-v16.0.html&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-34"><span class="mw-cite-backlink"><b><a href="#cite_ref-34">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://reactjs.org/docs/hooks-intro.html">"Introducing Hooks"</a>. react.js<span class="reference-accessdate">. Retrieved <span class="nowrap">2019-05-20</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=Introducing+Hooks&amp;rft.pub=react.js&amp;rft_id=https%3A%2F%2Freactjs.org%2Fdocs%2Fhooks-intro.html&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-35"><span class="mw-cite-backlink"><b><a href="#cite_ref-35">^</a></b></span> <span class="reference-text">url=<a rel="nofollow" class="external free" href="https://reactjs.org/blog/2020/08/10/react-v17-rc.html">https://reactjs.org/blog/2020/08/10/react-v17-rc.html</a></span> </li> <li id="cite_note-36"><span class="mw-cite-backlink"><b><a href="#cite_ref-36">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://reactjs.org/blog/2022/03/29/react-v18.html">"React v18.0"</a>. <i>reactjs.org</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2022-04-12</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=reactjs.org&amp;rft.atitle=React+v18.0&amp;rft_id=https%3A%2F%2Freactjs.org%2Fblog%2F2022%2F03%2F29%2Freact-v18.html&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-37"><span class="mw-cite-backlink"><b><a href="#cite_ref-37">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://github.com/facebook/react/blob/master/CHANGELOG.md#0120-october-28-2014">"React CHANGELOG.md"</a>. <i>GitHub</i>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=GitHub&amp;rft.atitle=React+CHANGELOG.md&amp;rft_id=https%3A%2F%2Fgithub.com%2Ffacebook%2Freact%2Fblob%2Fmaster%2FCHANGELOG.md%230120-october-28-2014&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-38"><span class="mw-cite-backlink"><b><a href="#cite_ref-38">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite id="CITEREFLiu" class="citation web cs1">Liu, Austin. <a rel="nofollow" class="external text" href="https://medium.com/bits-and-pixels/a-compelling-reason-not-to-use-reactjs-beac24402f7b">"A compelling reason not to use ReactJS"</a>. <i>Medium</i>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=Medium&amp;rft.atitle=A+compelling+reason+not+to+use+ReactJS&amp;rft.aulast=Liu&amp;rft.aufirst=Austin&amp;rft_id=https%3A%2F%2Fmedium.com%2Fbits-and-pixels%2Fa-compelling-reason-not-to-use-reactjs-beac24402f7b&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-39"><span class="mw-cite-backlink"><b><a href="#cite_ref-39">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://code.facebook.com/posts/1639473982937255/updating-our-open-source-patent-grant/">"Updating Our Open Source Patent Grant"</a>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=Updating+Our+Open+Source+Patent+Grant&amp;rft_id=https%3A%2F%2Fcode.facebook.com%2Fposts%2F1639473982937255%2Fupdating-our-open-source-patent-grant%2F&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-40"><span class="mw-cite-backlink"><b><a href="#cite_ref-40">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://github.com/facebook/react/blob/b8ba8c83f318b84e42933f6928f231dc0918f864/PATENTS">"Additional Grant of Patent Rights Version 2"</a>. <i>GitHub</i>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=GitHub&amp;rft.atitle=Additional+Grant+of+Patent+Rights+Version+2&amp;rft_id=https%3A%2F%2Fgithub.com%2Ffacebook%2Freact%2Fblob%2Fb8ba8c83f318b84e42933f6928f231dc0918f864%2FPATENTS&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-41"><span class="mw-cite-backlink"><b><a href="#cite_ref-41">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.apache.org/legal/resolved.html">"ASF Legal Previously Asked Questions"</a>. Apache Software Foundation<span class="reference-accessdate">. Retrieved <span class="nowrap">2017-07-16</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=ASF+Legal+Previously+Asked+Questions&amp;rft.pub=Apache+Software+Foundation&amp;rft_id=https%3A%2F%2Fwww.apache.org%2Flegal%2Fresolved.html&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-42"><span class="mw-cite-backlink"><b><a href="#cite_ref-42">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://code.facebook.com/posts/112130496157735/explaining-react-s-license/">"Explaining React's License"</a>. <i>Facebook</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2017-08-18</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=Facebook&amp;rft.atitle=Explaining+React%27s+License&amp;rft_id=https%3A%2F%2Fcode.facebook.com%2Fposts%2F112130496157735%2Fexplaining-react-s-license%2F&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-43"><span class="mw-cite-backlink"><b><a href="#cite_ref-43">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://github.com/facebook/react/issues/10191#issuecomment-323486580">"Consider re-licensing to AL v2.0, as RocksDB has just done"</a>. <i>Github</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2017-08-18</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=Github&amp;rft.atitle=Consider+re-licensing+to+AL+v2.0%2C+as+RocksDB+has+just+done&amp;rft_id=https%3A%2F%2Fgithub.com%2Ffacebook%2Freact%2Fissues%2F10191%23issuecomment-323486580&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-44"><span class="mw-cite-backlink"><b><a href="#cite_ref-44">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://techcrunch.com/2017/09/15/wordpress-to-ditch-react-library-over-facebook-patent-clause-risk/">"WordPress to ditch React library over Facebook patent clause risk"</a>. <i>TechCrunch</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2017-09-16</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=TechCrunch&amp;rft.atitle=WordPress+to+ditch+React+library+over+Facebook+patent+clause+risk&amp;rft_id=https%3A%2F%2Ftechcrunch.com%2F2017%2F09%2F15%2Fwordpress-to-ditch-react-library-over-facebook-patent-clause-risk%2F&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-45"><span class="mw-cite-backlink"><b><a href="#cite_ref-45">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://code.facebook.com/posts/300798627056246/relicensing-react-jest-flow-and-immutable-js/">"Relicensing React, Jest, Flow, and Immutable.js"</a>. <i>Facebook Code</i>. 2017-09-23.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=Facebook+Code&amp;rft.atitle=Relicensing+React%2C+Jest%2C+Flow%2C+and+Immutable.js&amp;rft.date=2017-09-23&amp;rft_id=https%3A%2F%2Fcode.facebook.com%2Fposts%2F300798627056246%2Frelicensing-react-jest-flow-and-immutable-js%2F&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-46"><span class="mw-cite-backlink"><b><a href="#cite_ref-46">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite id="CITEREFClark2017" class="citation web cs1">Clark, Andrew (September 26, 2017). <a rel="nofollow" class="external text" href="https://reactjs.org/blog/2017/09/26/react-v16.0.html#mit-licensed">"React v16.0§MIT licensed"</a>. <i>React Blog</i>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=React+Blog&amp;rft.atitle=React+v16.0%C2%A7MIT+licensed&amp;rft.date=2017-09-26&amp;rft.aulast=Clark&amp;rft.aufirst=Andrew&amp;rft_id=https%3A%2F%2Freactjs.org%2Fblog%2F2017%2F09%2F26%2Freact-v16.0.html%23mit-licensed&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> <li id="cite_note-47"><span class="mw-cite-backlink"><b><a href="#cite_ref-47">^</a></b></span> <span class="reference-text"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1067248974"/><cite id="CITEREFHunzaker2017" class="citation web cs1">Hunzaker, Nathan (September 25, 2017). <a rel="nofollow" class="external text" href="https://reactjs.org/blog/2017/09/25/react-v15.6.2.html">"React v15.6.2"</a>. <i>React Blog</i>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=unknown&amp;rft.jtitle=React+Blog&amp;rft.atitle=React+v15.6.2&amp;rft.date=2017-09-25&amp;rft.aulast=Hunzaker&amp;rft.aufirst=Nathan&amp;rft_id=https%3A%2F%2Freactjs.org%2Fblog%2F2017%2F09%2F25%2Freact-v15.6.2.html&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AReact+%28JavaScript+library%29" class="Z3988"></span></span> </li> </ol></div> <p>55.<a rel="nofollow" class="external text" href="https://www.websoptimization.com/blog/reason-to-choose-reactjs-for-your-next-project/">Reason to Choose ReactJS for Your Next Project</a> </p> <h2><span class="mw-headline" id="External_links">External links</span></h2> <ul><li><span class="official-website"><span class="url"><a rel="nofollow" class="external text" href="https://reactjs.org/">Official website</a></span></span> <a href="https://www.wikidata.org/wiki/Q19399674#P856" title="Edit this at Wikidata"><img alt="Edit this at Wikidata" src="//upload.wikimedia.org/wikipedia/en/thumb/8/8a/OOjs_UI_icon_edit-ltr-progressive.svg/10px-OOjs_UI_icon_edit-ltr-progressive.svg.png" decoding="async" width="10" height="10" style="vertical-align: text-top" srcset="//upload.wikimedia.org/wikipedia/en/thumb/8/8a/OOjs_UI_icon_edit-ltr-progressive.svg/15px-OOjs_UI_icon_edit-ltr-progressive.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/8/8a/OOjs_UI_icon_edit-ltr-progressive.svg/20px-OOjs_UI_icon_edit-ltr-progressive.svg.png 2x" data-file-width="20" data-file-height="20" /></a></li></ul> <div class="navbox-styles nomobile"><style data-mw-deduplicate="TemplateStyles:r1061467846">.mw-parser-output .navbox{box-sizing:border-box;border:1px solid #a2a9b1;width:100%;clear:both;font-size:88%;text-align:center;padding:1px;margin:1em auto 0}.mw-parser-output .navbox .navbox{margin-top:0}.mw-parser-output .navbox+.navbox,.mw-parser-output .navbox+.navbox-styles+.navbox{margin-top:-1px}.mw-parser-output .navbox-inner,.mw-parser-output .navbox-subgroup{width:100%}.mw-parser-output .navbox-group,.mw-parser-output .navbox-title,.mw-parser-output .navbox-abovebelow{padding:0.25em 1em;line-height:1.5em;text-align:center}.mw-parser-output .navbox-group{white-space:nowrap;text-align:right}.mw-parser-output .navbox,.mw-parser-output .navbox-subgroup{background-color:#fdfdfd}.mw-parser-output .navbox-list{line-height:1.5em;border-color:#fdfdfd}.mw-parser-output .navbox-list-with-group{text-align:left;border-left-width:2px;border-left-style:solid}.mw-parser-output tr+tr>.navbox-abovebelow,.mw-parser-output tr+tr>.navbox-group,.mw-parser-output tr+tr>.navbox-image,.mw-parser-output tr+tr>.navbox-list{border-top:2px solid #fdfdfd}.mw-parser-output .navbox-title{background-color:#ccf}.mw-parser-output .navbox-abovebelow,.mw-parser-output .navbox-group,.mw-parser-output .navbox-subgroup .navbox-title{background-color:#ddf}.mw-parser-output .navbox-subgroup .navbox-group,.mw-parser-output .navbox-subgroup .navbox-abovebelow{background-color:#e6e6ff}.mw-parser-output .navbox-even{background-color:#f7f7f7}.mw-parser-output .navbox-odd{background-color:transparent}.mw-parser-output .navbox .hlist td dl,.mw-parser-output .navbox .hlist td ol,.mw-parser-output .navbox .hlist td ul,.mw-parser-output .navbox td.hlist dl,.mw-parser-output .navbox td.hlist ol,.mw-parser-output .navbox td.hlist ul{padding:0.125em 0}.mw-parser-output .navbox .navbar{display:block;font-size:100%}.mw-parser-output .navbox-title .navbar{float:left;text-align:left;margin-right:0.5em}</style></div><div role="navigation" class="navbox" aria-labelledby="JavaScript_templating_libraries" style="padding:3px"><table class="nowraplinks mw-collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit"><tbody><tr><th scope="col" class="navbox-title" colspan="2"><style data-mw-deduplicate="TemplateStyles:r1063604349">.mw-parser-output .navbar{display:inline;font-size:88%;font-weight:normal}.mw-parser-output .navbar-collapse{float:left;text-align:left}.mw-parser-output .navbar-boxtext{word-spacing:0}.mw-parser-output .navbar ul{display:inline-block;white-space:nowrap;line-height:inherit}.mw-parser-output .navbar-brackets::before{margin-right:-0.125em;content:"[ "}.mw-parser-output .navbar-brackets::after{margin-left:-0.125em;content:" ]"}.mw-parser-output .navbar li{word-spacing:-0.125em}.mw-parser-output .navbar a>span,.mw-parser-output .navbar a>abbr{text-decoration:inherit}.mw-parser-output .navbar-mini abbr{font-variant:small-caps;border-bottom:none;text-decoration:none;cursor:inherit}.mw-parser-output .navbar-ct-full{font-size:114%;margin:0 7em}.mw-parser-output .navbar-ct-mini{font-size:114%;margin:0 4em}</style><div class="navbar plainlinks hlist navbar-mini"><ul><li class="nv-view"><a href="/wiki/Template:JS_templating" title="Template:JS templating"><abbr title="View this template" style=";;background:none transparent;border:none;box-shadow:none;padding:0;">v</abbr></a></li><li class="nv-talk"><a href="/wiki/Template_talk:JS_templating" title="Template talk:JS templating"><abbr title="Discuss this template" style=";;background:none transparent;border:none;box-shadow:none;padding:0;">t</abbr></a></li><li class="nv-edit"><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Template:JS_templating&amp;action=edit"><abbr title="Edit this template" style=";;background:none transparent;border:none;box-shadow:none;padding:0;">e</abbr></a></li></ul></div><div id="JavaScript_templating_libraries" style="font-size:114%;margin:0 4em"><a href="/wiki/JavaScript_templating" title="JavaScript templating">JavaScript templating libraries</a></div></th></tr><tr><th scope="row" class="navbox-group" style="width:1%">Libraries</th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/AngularJS" title="AngularJS">AngularJS</a></li> <li><a href="/wiki/Backbone.js" title="Backbone.js">Backbone.js</a></li> <li><a href="/wiki/Ember.js" title="Ember.js">Ember.js</a></li> <li><a href="/wiki/Handlebars_(template_system)" class="mw-redirect" title="Handlebars (template system)">Handlebars.js</a></li> <li><a href="/wiki/KnockoutJS" class="mw-redirect" title="KnockoutJS">KnockoutJS</a></li> <li><a href="/wiki/Mustache_(template_system)" title="Mustache (template system)">Mustache.js</a></li> <li><a class="mw-selflink selflink">React.js</a></li> <li><a href="/wiki/Vue.js" title="Vue.js">Vue.js</a></li> <li><a href="/wiki/Svelte" title="Svelte">Svelte</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Concepts</th><td class="navbox-list-with-group navbox-list navbox-even hlist" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Model%E2%80%93view%E2%80%93controller" title="Model–view–controller">Model–view–controller (MVC)</a></li> <li><a href="/wiki/Model%E2%80%93view%E2%80%93viewmodel" title="Model–view–viewmodel">Model–view–viewmodel (MVVM)</a></li></ul> </div></td></tr></tbody></table></div> <div class="navbox-styles nomobile"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1061467846"/></div><div role="navigation" class="navbox" aria-labelledby="Web_frameworks" style="padding:3px"><table class="nowraplinks mw-collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit"><tbody><tr><th scope="col" class="navbox-title" colspan="2"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1063604349"/><div class="navbar plainlinks hlist navbar-mini"><ul><li class="nv-view"><a href="/wiki/Template:Web_frameworks" title="Template:Web frameworks"><abbr title="View this template" style=";;background:none transparent;border:none;box-shadow:none;padding:0;">v</abbr></a></li><li class="nv-talk"><a href="/wiki/Template_talk:Web_frameworks" title="Template talk:Web frameworks"><abbr title="Discuss this template" style=";;background:none transparent;border:none;box-shadow:none;padding:0;">t</abbr></a></li><li class="nv-edit"><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Template:Web_frameworks&amp;action=edit"><abbr title="Edit this template" style=";;background:none transparent;border:none;box-shadow:none;padding:0;">e</abbr></a></li></ul></div><div id="Web_frameworks" style="font-size:114%;margin:0 4em"><a href="/wiki/Web_framework" title="Web framework">Web frameworks</a></div></th></tr><tr><td class="navbox-abovebelow hlist" colspan="2"><div id="*Comparison"> <ul><li><a href="/wiki/Comparison_of_server-side_web_frameworks" title="Comparison of server-side web frameworks">Comparison</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%"><a href="/wiki/.NET_Framework" title=".NET Framework">.NET</a></th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/ASP.NET" title="ASP.NET">ASP.NET</a> <ul><li><a href="/wiki/ASP.NET_Core" title="ASP.NET Core">Core</a></li> <li><a href="/wiki/ASP.NET_AJAX" title="ASP.NET AJAX">AJAX</a></li> <li><a href="/wiki/ASP.NET_Dynamic_Data" title="ASP.NET Dynamic Data">Dynamic Data</a></li> <li><a href="/wiki/ASP.NET_MVC" title="ASP.NET MVC">MVC</a></li> <li><a href="/wiki/ASP.NET_Razor" title="ASP.NET Razor">Razor</a></li> <li><a href="/wiki/ASP.NET_Web_Forms" title="ASP.NET Web Forms">Web Forms</a></li></ul></li> <li><a href="/wiki/Blazor" title="Blazor">Blazor</a></li> <li><a href="/wiki/DotNetNuke" class="mw-redirect" title="DotNetNuke">DNN</a></li> <li><a href="/wiki/Base_One_Foundation_Component_Library" title="Base One Foundation Component Library">BFC</a></li> <li><a href="/wiki/MonoRail_(software)" title="MonoRail (software)">MonoRail</a></li> <li><a href="/wiki/Umbraco" title="Umbraco">Umbraco</a></li> <li><a href="/wiki/WebSharper" title="WebSharper">WebSharper</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%"><a href="/wiki/C%2B%2B" title="C++">C++</a></th><td class="navbox-list-with-group navbox-list navbox-even hlist" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/CppCMS" title="CppCMS">CppCMS</a></li> <li><a href="/wiki/Drogon_(software)" title="Drogon (software)">Drogon</a></li> <li><a href="/wiki/Wt_(web_toolkit)" title="Wt (web toolkit)">Wt</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%"><a href="/wiki/Adobe_ColdFusion" title="Adobe ColdFusion">ColdFusion</a></th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/ColdBox_Platform" title="ColdBox Platform">ColdBox Platform</a></li> <li><a href="/wiki/ColdSpring_Framework" title="ColdSpring Framework">ColdSpring</a></li> <li><a href="/wiki/Fusebox_(programming)" title="Fusebox (programming)">Fusebox</a></li> <li><a href="/wiki/Model-Glue" title="Model-Glue">Model-Glue</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%"><a href="/wiki/Common_Lisp" title="Common Lisp">Common Lisp</a></th><td class="navbox-list-with-group navbox-list navbox-even hlist" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/CL-HTTP" title="CL-HTTP">CL-HTTP</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%"><a href="/wiki/Haskell_(programming_language)" class="mw-redirect" title="Haskell (programming language)">Haskell</a></th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Yesod_(web_framework)" title="Yesod (web framework)">Yesod</a></li> <li><a href="/wiki/Snap_(web_framework)" title="Snap (web framework)">Snap</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%"><a href="/wiki/Java_(software_platform)" title="Java (software platform)">Java</a></th><td class="navbox-list-with-group navbox-list navbox-even hlist" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/AppFuse" title="AppFuse">AppFuse</a></li> <li><a href="/wiki/Grails_(framework)" title="Grails (framework)">Grails</a></li> <li><a href="/wiki/Google_Web_Toolkit" title="Google Web Toolkit">GWT</a></li> <li><a href="/wiki/ICEfaces" title="ICEfaces">ICEfaces</a></li> <li><a href="/wiki/JHipster" title="JHipster">JHipster</a></li> <li><a href="/wiki/JWt_(Java_web_toolkit)" title="JWt (Java web toolkit)">JWt</a></li> <li><a href="/wiki/Jakarta_Server_Faces#JSF_and_Ajax" title="Jakarta Server Faces">Mojarra</a></li> <li><a href="/wiki/Play_Framework" title="Play Framework">Play</a></li> <li><a href="/wiki/Remote_Application_Platform" title="Remote Application Platform">Remote Application Platform</a></li> <li><a href="/wiki/JBoss_Seam" title="JBoss Seam">Seam</a></li> <li><a href="/wiki/Apache_Sling" title="Apache Sling">Sling</a></li> <li><a href="/wiki/Spring_Framework#Model-view-controller_framework" title="Spring Framework">Spring</a></li> <li><a href="/wiki/Stripes_(framework)" title="Stripes (framework)">Stripes</a></li> <li><a href="/wiki/Apache_Struts_2" title="Apache Struts 2">Struts</a></li> <li><a href="/wiki/Apache_Tapestry" title="Apache Tapestry">Tapestry</a></li> <li><a href="/wiki/Vaadin" title="Vaadin">Vaadin</a></li> <li><a href="/wiki/Vert.x" title="Vert.x">Vert.x</a></li> <li><a href="/wiki/Apache_Wicket" title="Apache Wicket">Wicket</a></li> <li><a href="/wiki/WaveMaker" title="WaveMaker">WaveMaker</a></li> <li><a href="/wiki/ZK_(framework)" title="ZK (framework)">ZK</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%"><a href="/wiki/JavaScript" title="JavaScript">JavaScript</a></th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Angular_(web_framework)" title="Angular (web framework)">Angular</a>/<a href="/wiki/AngularJS" title="AngularJS">AngularJS</a></li> <li><a href="/wiki/Backbone.js" title="Backbone.js">Backbone.js</a></li> <li><a href="/wiki/Google_Closure_Tools" title="Google Closure Tools">Closure</a></li> <li><a href="/wiki/Dojo_Toolkit" title="Dojo Toolkit">Dojo Toolkit</a></li> <li><a href="/wiki/Ember.js" title="Ember.js">Ember.js</a></li> <li><a href="/wiki/Express.js" title="Express.js">Express.js</a></li> <li><a href="/wiki/Ext_JS" title="Ext JS">Ext JS</a></li> <li><a href="/wiki/JQuery" title="JQuery">jQuery</a></li> <li><a href="/wiki/Knockout.js" class="mw-redirect" title="Knockout.js">Knockout.js</a></li> <li><a href="/wiki/Meteor_(web_framework)" title="Meteor (web framework)">Meteor</a></li> <li><a href="/wiki/MooTools" title="MooTools">MooTools</a></li> <li><a href="/wiki/Node.js" title="Node.js">Node.js</a></li> <li><a href="/wiki/OpenUI5" title="OpenUI5">OpenUI5</a></li> <li><a href="/wiki/Prototype_JavaScript_Framework" title="Prototype JavaScript Framework">Prototype</a></li> <li><a class="mw-selflink selflink">React</a></li> <li><a href="/wiki/Sencha_Touch" title="Sencha Touch">Sencha Touch</a></li> <li><a href="/wiki/SproutCore" title="SproutCore">SproutCore</a></li> <li><a href="/wiki/Svelte" title="Svelte">Svelte</a></li> <li><a href="/wiki/Vue.js" title="Vue.js">Vue.js</a></li> <li><a href="/wiki/Wakanda_(software)" title="Wakanda (software)">Wakanda</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%"><a href="/wiki/Perl" title="Perl">Perl</a></th><td class="navbox-list-with-group navbox-list navbox-even hlist" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Catalyst_(software)" title="Catalyst (software)">Catalyst</a></li> <li><a href="/wiki/Dancer_(software)" title="Dancer (software)">Dancer</a></li> <li><a href="/wiki/Maypole_framework" class="mw-redirect" title="Maypole framework">Maypole</a></li> <li><a href="/wiki/Mojolicious" title="Mojolicious">Mojolicious</a></li> <li><a href="/wiki/WebGUI" title="WebGUI">WebGUI</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%"><a href="/wiki/PHP" title="PHP">PHP</a></th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/CakePHP" title="CakePHP">CakePHP</a></li> <li><a href="/wiki/CodeIgniter" title="CodeIgniter">CodeIgniter</a></li> <li><a href="/wiki/Drupal" title="Drupal">Drupal</a></li> <li><a href="/wiki/Fat-Free_Framework" title="Fat-Free Framework">Fat-Free</a></li> <li><a href="/wiki/FuelPHP" title="FuelPHP">FuelPHP</a></li> <li><a href="/wiki/TYPO3_Flow" class="mw-redirect" title="TYPO3 Flow">Flow</a></li> <li><a href="/wiki/Grav_(CMS)" title="Grav (CMS)">Grav</a></li> <li><a href="/wiki/Gyroscope_(software)" title="Gyroscope (software)">Gyroscope</a></li> <li><a href="/wiki/Horde_(software)" title="Horde (software)">Horde</a></li> <li><a href="/wiki/Joomla" title="Joomla">Joomla</a></li> <li><a href="/wiki/Laminas" title="Laminas">Laminas</a></li> <li><a href="/wiki/Laravel" title="Laravel">Laravel</a></li> <li><a href="/wiki/Lithium_(software)" class="mw-redirect" title="Lithium (software)">Lithium</a></li> <li><a href="/wiki/Midgard_(software)" title="Midgard (software)">Midgard</a></li> <li><a href="/wiki/MODX" title="MODX">MODX</a></li> <li><a href="/wiki/Nette_Framework" title="Nette Framework">Nette</a></li> <li><a href="/wiki/Phalcon_(framework)" title="Phalcon (framework)">Phalcon</a></li> <li><a href="/wiki/PHP-Fusion" title="PHP-Fusion">PHP-Fusion</a></li> <li><a href="/wiki/Pop_PHP_Framework" title="Pop PHP Framework">Pop PHP</a></li> <li><a href="/wiki/PRADO_(framework)" title="PRADO (framework)">PRADO</a></li> <li><a href="/wiki/ProcessWire" title="ProcessWire">ProcessWire</a></li> <li><a href="/wiki/Qcodo" title="Qcodo">Qcodo</a></li> <li><a href="/wiki/Silex_(web_framework)" title="Silex (web framework)">Silex</a></li> <li><a href="/wiki/SilverStripe" class="mw-redirect" title="SilverStripe">SilverStripe</a></li> <li><a href="/wiki/Symfony" title="Symfony">Symfony</a></li> <li><a href="/wiki/TYPO3" title="TYPO3">TYPO3</a></li> <li><a href="/wiki/WordPress" title="WordPress">WordPress</a></li> <li><a href="/wiki/XOOPS" title="XOOPS">XOOPS</a></li> <li><a href="/wiki/Yii" title="Yii">Yii</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%"><a href="/wiki/Python_(programming_language)" title="Python (programming language)">Python</a></th><td class="navbox-list-with-group navbox-list navbox-even hlist" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Zope#BlueBream" title="Zope">BlueBream</a></li> <li><a href="/wiki/CherryPy" title="CherryPy">CherryPy</a></li> <li><a href="/wiki/CubicWeb" title="CubicWeb">CubicWeb</a></li> <li><a href="/wiki/Django_(web_framework)" title="Django (web framework)">Django</a></li> <li><a href="/wiki/FastAPI" title="FastAPI">FastAPI</a></li> <li><a href="/wiki/Flask_(web_framework)" title="Flask (web framework)">Flask</a></li> <li><a href="/wiki/Grok_(web_framework)" title="Grok (web framework)">Grok</a></li> <li><a href="/wiki/Nevow" title="Nevow">Nevow</a></li> <li><a href="/wiki/Pyjs" title="Pyjs">Pyjs</a></li> <li><a href="/wiki/Pylons_project#Pylons_Framework" title="Pylons project">Pylons</a></li> <li><a href="/wiki/Pylons_project#Pyramid" title="Pylons project">Pyramid</a></li> <li><a href="/wiki/Quixote_(web_framework)" title="Quixote (web framework)">Quixote</a></li> <li><a href="/wiki/TACTIC_(web_framework)" title="TACTIC (web framework)">TACTIC</a></li> <li><a href="/wiki/Tornado_(web_server)" title="Tornado (web server)">Tornado</a></li> <li><a href="/wiki/TurboGears" title="TurboGears">TurboGears</a></li> <li><a href="/wiki/Web2py" title="Web2py">web2py</a></li> <li><a href="/wiki/Zope#Zope_2" title="Zope">Zope 2</a></li> <li><i><a href="/wiki/Category:Python_(programming_language)_web_frameworks" title="Category:Python (programming language) web frameworks">more</a></i>...</li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%"><a href="/wiki/Ruby_(programming_language)" title="Ruby (programming language)">Ruby</a></th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Camping_(microframework)" title="Camping (microframework)">Camping</a></li> <li><a href="/wiki/Merb" title="Merb">Merb</a></li> <li><a href="/wiki/Padrino_(web_framework)" title="Padrino (web framework)">Padrino</a></li> <li><a href="/wiki/Ruby_on_Rails" title="Ruby on Rails">Ruby on Rails</a></li> <li><a href="/wiki/Sinatra_(software)" title="Sinatra (software)">Sinatra</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%"><a href="/wiki/Rust_(programming_language)" title="Rust (programming language)">Rust</a></th><td class="navbox-list-with-group navbox-list navbox-even hlist" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Rocket_(web_framework)" title="Rocket (web framework)">Rocket</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%"><a href="/wiki/Scala_(programming_language)" title="Scala (programming language)">Scala</a></th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Lift_(web_framework)" title="Lift (web framework)">Lift</a></li> <li><a href="/wiki/Play_framework" class="mw-redirect" title="Play framework">Play</a></li> <li><a href="/wiki/Scalatra" title="Scalatra">Scalatra</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%"><a href="/wiki/Smalltalk" title="Smalltalk">Smalltalk</a></th><td class="navbox-list-with-group navbox-list navbox-even hlist" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/AIDA/Web" title="AIDA/Web">AIDA/Web</a></li> <li><a href="/wiki/Seaside_(software)" title="Seaside (software)">Seaside</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Other languages</th><td class="navbox-list-with-group navbox-list navbox-odd hlist" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Oracle_Application_Express" title="Oracle Application Express">Application Express</a> (<a href="/wiki/PL/SQL" title="PL/SQL">PL/SQL</a>)</li> <li><a href="/wiki/Grails_(framework)" title="Grails (framework)">Grails</a> (<a href="/wiki/Groovy_(programming_language)" class="mw-redirect" title="Groovy (programming language)">Groovy</a>)</li> <li><a href="/wiki/OpenACS" class="mw-redirect" title="OpenACS">OpenACS</a> (<a href="/wiki/Tcl" title="Tcl">Tcl</a>)</li> <li><a href="/wiki/Phoenix_(web_framework)" title="Phoenix (web framework)">Phoenix</a> (<a href="/wiki/Elixir_(programming_language)" title="Elixir (programming language)">Elixir</a>)</li> <li><a href="/wiki/SproutCore" title="SproutCore">SproutCore</a> (<a href="/wiki/JavaScript" title="JavaScript">JavaScript</a>-<a href="/wiki/Ruby_(programming_language)" title="Ruby (programming language)">Ruby</a>)</li> <li><a href="/wiki/Yaws_(web_server)" title="Yaws (web server)">Yaws</a> (<a href="/wiki/Erlang_(programming_language)" title="Erlang (programming language)">Erlang</a>)</li></ul> </div></td></tr></tbody></table></div> <div class="navbox-styles nomobile"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1061467846"/></div><div role="navigation" class="navbox" aria-labelledby="ECMAScript" style="padding:3px"><table class="nowraplinks hlist mw-collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit"><tbody><tr><th scope="col" class="navbox-title" colspan="2"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1063604349"/><div class="navbar plainlinks hlist navbar-mini"><ul><li class="nv-view"><a href="/wiki/Template:ECMAScript" title="Template:ECMAScript"><abbr title="View this template" style=";;background:none transparent;border:none;box-shadow:none;padding:0;">v</abbr></a></li><li class="nv-talk"><a href="/wiki/Template_talk:ECMAScript" title="Template talk:ECMAScript"><abbr title="Discuss this template" style=";;background:none transparent;border:none;box-shadow:none;padding:0;">t</abbr></a></li><li class="nv-edit"><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Template:ECMAScript&amp;action=edit"><abbr title="Edit this template" style=";;background:none transparent;border:none;box-shadow:none;padding:0;">e</abbr></a></li></ul></div><div id="ECMAScript" style="font-size:114%;margin:0 4em"><a href="/wiki/ECMAScript" title="ECMAScript">ECMAScript</a></div></th></tr><tr><th scope="row" class="navbox-group" style="width:1%">Dialects</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/ActionScript" title="ActionScript">ActionScript</a></li> <li><a href="/wiki/Caja_project" title="Caja project">Caja</a></li> <li><a href="/wiki/JavaScript" title="JavaScript">JavaScript</a> <ul><li><a href="/wiki/JavaScript_engine" title="JavaScript engine">engines</a></li> <li><a href="/wiki/Asm.js" title="Asm.js">asm.js</a></li></ul></li> <li><a href="/wiki/JScript" title="JScript">JScript</a></li> <li><a href="/wiki/JScript_.NET" title="JScript .NET">JScript .NET</a></li> <li><a href="/wiki/QtScript" title="QtScript">QtScript</a></li> <li><a href="/wiki/TypeScript" title="TypeScript">TypeScript</a></li> <li><a href="/wiki/WMLScript" title="WMLScript">WMLScript</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%"><a href="/wiki/List_of_ECMAScript_engines" title="List of ECMAScript engines">Engines</a><br />(<a href="/wiki/Comparison_of_JavaScript_engines" title="Comparison of JavaScript engines">comparison</a>)</th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Presto_(layout_engine)#JavaScript_engines" class="mw-redirect" title="Presto (layout engine)">Carakan</a></li> <li><a href="/wiki/Presto_(layout_engine)#JavaScript_engines" class="mw-redirect" title="Presto (layout engine)">Futhark</a></li> <li><a href="/wiki/InScript_(JavaScript_engine)" title="InScript (JavaScript engine)">InScript</a></li> <li><a href="/wiki/WebKit#JavaScriptCore" title="WebKit">JavaScriptCore</a></li> <li><a href="/wiki/JScript" title="JScript">JScript</a></li> <li><a href="/wiki/KJS_(software)" title="KJS (software)">KJS</a></li> <li><a href="/wiki/Presto_(layout_engine)#ECMAScript_engines" class="mw-redirect" title="Presto (layout engine)">Linear B</a></li> <li><a href="/wiki/QtScript" title="QtScript">QtScript</a></li> <li><a href="/wiki/Rhino_(JavaScript_engine)" title="Rhino (JavaScript engine)">Rhino</a></li> <li><a href="/wiki/SpiderMonkey" title="SpiderMonkey">SpiderMonkey</a> <ul><li><a href="/wiki/SpiderMonkey#TraceMonkey" title="SpiderMonkey">TraceMonkey</a></li> <li><a href="/wiki/SpiderMonkey#JägerMonkey" title="SpiderMonkey">JägerMonkey</a></li></ul></li> <li><a href="/wiki/Tamarin_(software)" title="Tamarin (software)">Tamarin</a></li> <li><a href="/wiki/V8_(JavaScript_engine)" title="V8 (JavaScript engine)">V8</a></li> <li><a href="/wiki/Chakra_(JavaScript_engine)" title="Chakra (JavaScript engine)">ChakraCore</a> <ul><li><a href="/wiki/Chakra_(JScript_engine)" title="Chakra (JScript engine)">Chakra</a></li></ul></li> <li><a href="/wiki/JScript_.NET" title="JScript .NET">JScript .NET</a></li> <li><a href="/wiki/Nashorn_(JavaScript_engine)" title="Nashorn (JavaScript engine)">Nashorn</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%"><a href="/wiki/Software_framework" title="Software framework">Frameworks</a></th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"></div><table class="nowraplinks navbox-subgroup" style="border-spacing:0"><tbody><tr><th scope="row" class="navbox-group" style="width:1%"><a href="/wiki/Client-side_JavaScript" class="mw-redirect" title="Client-side JavaScript">Client-side</a></th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Dojo_Toolkit" title="Dojo Toolkit">Dojo</a></li> <li><a href="/wiki/Echo_(framework)" title="Echo (framework)">Echo</a></li> <li><a href="/wiki/Ext_JS" title="Ext JS">Ext JS</a></li> <li><a href="/wiki/Google_Web_Toolkit" title="Google Web Toolkit">Google Web Toolkit</a></li> <li><a href="/wiki/JQuery" title="JQuery">jQuery</a></li> <li><a href="/wiki/Lively_Kernel" title="Lively Kernel">Lively Kernel</a></li> <li><a href="/wiki/Midori_JavaScript_Framework" title="Midori JavaScript Framework">midori</a></li> <li><a href="/wiki/MochiKit" title="MochiKit">MochiKit</a></li> <li><a href="/wiki/MooTools" title="MooTools">MooTools</a></li> <li><a href="/wiki/Prototype_JavaScript_Framework" title="Prototype JavaScript Framework">Prototype</a></li> <li><a href="/wiki/Pyjs" title="Pyjs">Pyjs</a></li> <li><a href="/wiki/Qooxdoo" title="Qooxdoo">qooxdoo</a></li> <li class="mw-empty-elt"></li> <li><a href="/wiki/SproutCore" title="SproutCore">SproutCore</a></li> <li><a href="/wiki/Spry_framework" title="Spry framework">Spry</a></li> <li><a href="/wiki/Wakanda_(software)" title="Wakanda (software)">Wakanda Framework</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%"><a href="/wiki/Server-side_JavaScript" class="mw-redirect" title="Server-side JavaScript">Server-side</a></th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/AppJet" title="AppJet">AppJet</a></li> <li><a href="/wiki/Deno_(software)" title="Deno (software)">Deno</a></li> <li><a href="/wiki/Jaxer#Aptana_Jaxer" class="mw-redirect" title="Jaxer">Jaxer</a></li> <li><a href="/wiki/Node.js" title="Node.js">Node.js</a></li> <li><a href="/wiki/Wakanda_(software)" title="Wakanda (software)">WakandaDB</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Multiple</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li>Cappuccino</li> <li><a href="/wiki/PureMVC" title="PureMVC">PureMVC</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%"><a href="/wiki/JavaScript_library" title="JavaScript library">Libraries</a></th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Backbone.js" title="Backbone.js">Backbone.js</a></li> <li><a href="/wiki/SWFObject" title="SWFObject">SWFObject</a></li> <li><a href="/wiki/Underscore.js" title="Underscore.js">Underscore.js</a></li></ul> </div></td></tr></tbody></table><div></div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">People</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Brendan_Eich" title="Brendan Eich">Brendan Eich</a></li> <li><a href="/wiki/Douglas_Crockford" title="Douglas Crockford">Douglas Crockford</a></li> <li><a href="/wiki/John_Resig" title="John Resig">John Resig</a></li> <li>Scott Isaacs</li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Other</th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Dynamic_HTML" title="Dynamic HTML">DHTML</a></li> <li><a href="/wiki/Ecma_International" title="Ecma International">Ecma International</a></li> <li><a href="/wiki/JSDoc" title="JSDoc">JSDoc</a></li> <li><a href="/wiki/JSGI" title="JSGI">JSGI</a></li> <li><a href="/wiki/JSHint" title="JSHint">JSHint</a></li> <li><a href="/wiki/JSLint" title="JSLint">JSLint</a></li> <li><a href="/wiki/JSON" title="JSON">JSON</a></li> <li><a href="/wiki/JavaScript_Style_Sheets" title="JavaScript Style Sheets">JSSS</a></li> <li><a href="/wiki/Sputnik_(JavaScript_conformance_test)" title="Sputnik (JavaScript conformance test)">Sputnik</a></li> <li><a href="/wiki/Browser_speed_test#SunSpider" title="Browser speed test">SunSpider</a></li> <li><a href="/wiki/Asynchronous_module_definition" title="Asynchronous module definition">Asynchronous module definition</a></li> <li><a href="/wiki/CommonJS" title="CommonJS">CommonJS</a></li></ul> </div></td></tr><tr><td class="navbox-abovebelow" colspan="2"><div> <dl><dt><img alt="" src="//upload.wikimedia.org/wikipedia/en/thumb/d/db/Symbol_list_class.svg/16px-Symbol_list_class.svg.png" decoding="async" title="List-Class article" width="16" height="16" class="noviewer" srcset="//upload.wikimedia.org/wikipedia/en/thumb/d/db/Symbol_list_class.svg/23px-Symbol_list_class.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/d/db/Symbol_list_class.svg/31px-Symbol_list_class.svg.png 2x" data-file-width="180" data-file-height="185" /> Lists</dt> <dd><a href="/wiki/List_of_JavaScript_libraries" title="List of JavaScript libraries">JavaScript libraries</a></dd> <dd><a href="/wiki/List_of_Ajax_frameworks#JavaScript" title="List of Ajax frameworks">Ajax frameworks</a></dd> <dt><img alt="" src="//upload.wikimedia.org/wikipedia/en/thumb/d/db/Symbol_list_class.svg/16px-Symbol_list_class.svg.png" decoding="async" title="List-Class article" width="16" height="16" class="noviewer" srcset="//upload.wikimedia.org/wikipedia/en/thumb/d/db/Symbol_list_class.svg/23px-Symbol_list_class.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/d/db/Symbol_list_class.svg/31px-Symbol_list_class.svg.png 2x" data-file-width="180" data-file-height="185" /> Comparisons</dt> <dd><a href="/wiki/Comparison_of_JavaScript_frameworks" class="mw-redirect" title="Comparison of JavaScript frameworks">JavaScript frameworks</a></dd> <dd><a href="/wiki/Comparison_of_server-side_JavaScript_solutions" class="mw-redirect" title="Comparison of server-side JavaScript solutions">server-side JavaScript</a></dd></dl> </div></td></tr></tbody></table></div> <div class="navbox-styles nomobile"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1061467846"/></div><div role="navigation" class="navbox" aria-labelledby="Meta_Platforms" style="padding:3px"><table class="nowraplinks hlist mw-collapsible mw-collapsed navbox-inner" style="border-spacing:0;background:transparent;color:inherit"><tbody><tr><th scope="col" class="navbox-title" colspan="3"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1063604349"/><div class="navbar plainlinks hlist navbar-mini"><ul><li class="nv-view"><a href="/wiki/Template:Meta_Platforms" title="Template:Meta Platforms"><abbr title="View this template" style=";;background:none transparent;border:none;box-shadow:none;padding:0;">v</abbr></a></li><li class="nv-talk"><a href="/wiki/Template_talk:Meta_Platforms" title="Template talk:Meta Platforms"><abbr title="Discuss this template" style=";;background:none transparent;border:none;box-shadow:none;padding:0;">t</abbr></a></li><li class="nv-edit"><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Template:Meta_Platforms&amp;action=edit"><abbr title="Edit this template" style=";;background:none transparent;border:none;box-shadow:none;padding:0;">e</abbr></a></li></ul></div><div id="Meta_Platforms" style="font-size:114%;margin:0 4em"><a href="/wiki/Meta_Platforms" title="Meta Platforms">Meta Platforms</a></div></th></tr><tr><th scope="row" class="navbox-group" style="width:1%">Services</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"></div><table class="nowraplinks navbox-subgroup" style="border-spacing:0"><tbody><tr><th scope="row" class="navbox-group" style="width:1%"><a href="/wiki/Facebook" title="Facebook">Facebook</a></th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Facebook" title="Facebook">Service</a></li> <li><a href="/wiki/List_of_Facebook_features" title="List of Facebook features">Features</a></li> <li><a href="/wiki/Facebook_Beacon" title="Facebook Beacon">Beacon</a></li> <li><a href="/wiki/Facebook_Bluetooth_Beacon" title="Facebook Bluetooth Beacon">Bluetooth Beacon</a></li> <li><a href="/wiki/Facebook_Credits" title="Facebook Credits">Credits</a></li> <li><a href="/wiki/Facebook_Dating" title="Facebook Dating">Dating</a></li> <li><a href="/wiki/EdgeRank" title="EdgeRank">EdgeRank</a></li> <li><a href="/wiki/Facebook_Gaming" class="mw-redirect" title="Facebook Gaming">Gaming</a></li> <li><a href="/wiki/Facebook_Graph_Search" title="Facebook Graph Search">Graph Search</a></li> <li><a href="/wiki/Facebook_Instant_Articles" title="Facebook Instant Articles">Instant Articles</a></li> <li><a href="/wiki/Facebook_like_button" title="Facebook like button">Like button</a></li> <li><a href="/wiki/Facebook_Live" class="mw-redirect" title="Facebook Live">Live</a></li> <li><a href="/wiki/Facebook_onion_address" title="Facebook onion address">Onion address</a></li> <li><a href="/wiki/Facebook_Platform" title="Facebook Platform">Platform</a> <ul><li><a href="/wiki/Facebook_Platform#Facebook_Connect" title="Facebook Platform">Connect</a></li></ul></li> <li><a href="/wiki/Facebook_Safety_Check" title="Facebook Safety Check">Safety Check</a></li> <li><a href="/wiki/Facebook_Stories" title="Facebook Stories">Stories</a></li> <li><a href="/wiki/Facebook_Watch" title="Facebook Watch">Watch</a> <ul><li><a href="/wiki/List_of_Facebook_Watch_original_programming" title="List of Facebook Watch original programming">List of original programs</a></li></ul></li> <li><a href="/wiki/Facebook_Zero" title="Facebook Zero">Zero</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Other<br />applications</th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Atlas_Solutions" title="Atlas Solutions">Atlas Solutions</a></li> <li><a href="/wiki/Express_Wi-Fi" title="Express Wi-Fi">Express Wi-Fi</a></li> <li><a href="/wiki/Giphy" title="Giphy">Giphy</a></li> <li><a href="/wiki/Internet.org" title="Internet.org">Free Basics</a></li> <li><a href="/wiki/Instagram" title="Instagram">Instagram</a> <ul><li><a href="/wiki/Hyperlapse_(application)" title="Hyperlapse (application)">Hyperlapse</a></li> <li><a href="/wiki/IGTV" title="IGTV">IGTV</a></li> <li><a href="/wiki/List_of_most-followed_Instagram_accounts" title="List of most-followed Instagram accounts">List of most followed accounts</a></li> <li><a href="/wiki/List_of_most-liked_Instagram_posts" title="List of most-liked Instagram posts">List of most liked pictures</a></li></ul></li> <li><a href="/wiki/Messenger_(software)" title="Messenger (software)">Messenger</a> <ul><li><a href="/wiki/Messenger_Kids" title="Messenger Kids">Kids</a></li> <li><a href="/wiki/Messenger_(software)#Messenger_Rooms" title="Messenger (software)">Rooms</a></li></ul></li> <li><a href="/wiki/Mapillary" title="Mapillary">Mapillary</a></li> <li><a href="/wiki/Oculus_(brand)" class="mw-redirect" title="Oculus (brand)">Oculus</a> <ul><li><a href="/wiki/Oculus_Quest" title="Oculus Quest">Quest</a></li> <li><a href="/wiki/Oculus_Quest_2" title="Oculus Quest 2">Quest 2</a></li> <li><a href="/wiki/Oculus_Rift" title="Oculus Rift">Rift</a> <ul><li><a href="/wiki/Oculus_Rift_CV1" title="Oculus Rift CV1">CV1</a></li> <li><a href="/wiki/Oculus_Rift_S" title="Oculus Rift S">S</a></li></ul></li> <li><a href="/wiki/Oculus_Go" title="Oculus Go">Go</a></li> <li><a href="/wiki/Oculus_Touch" title="Oculus Touch">Touch</a></li></ul></li> <li><a href="/wiki/Meta_Portal" title="Meta Portal">Portal</a></li> <li><a href="/wiki/WhatsApp" title="WhatsApp">WhatsApp</a></li> <li><a href="/wiki/Workplace_(software)" title="Workplace (software)">Workplace</a></li> <li><a href="/wiki/Zuck_Bucks" title="Zuck Bucks">Zuck Bucks</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Former</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/FriendFeed" title="FriendFeed">FriendFeed</a></li> <li><a href="/wiki/Facebook_Home" title="Facebook Home">Home</a> <ul><li><a href="/wiki/HTC_First" title="HTC First">HTC First</a></li></ul></li> <li><a href="/wiki/M_(virtual_assistant)" title="M (virtual assistant)">M</a></li> <li><a href="/wiki/Onavo" title="Onavo">Onavo</a></li> <li><a href="/wiki/Facebook_Paper" title="Facebook Paper">Paper</a></li> <li><a href="/wiki/Facebook_Slingshot" title="Facebook Slingshot">Slingshot</a></li> <li><a href="/wiki/Tbh_(app)" title="Tbh (app)">tbh</a></li> <li><a href="/wiki/Wirehog" title="Wirehog">Wirehog</a></li></ul> </div></td></tr></tbody></table><div></div></td><td class="noviewer navbox-image" rowspan="8" style="width:1px;padding:0 0 0 2px"><div><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Meta_Platforms_Inc._logo.svg/100px-Meta_Platforms_Inc._logo.svg.png" decoding="async" width="100" height="20" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Meta_Platforms_Inc._logo.svg/150px-Meta_Platforms_Inc._logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Meta_Platforms_Inc._logo.svg/200px-Meta_Platforms_Inc._logo.svg.png 2x" data-file-width="948" data-file-height="191" /></div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">People</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"></div><table class="nowraplinks navbox-subgroup" style="border-spacing:0"><tbody><tr><th scope="row" class="navbox-group" style="width:1%">Founders</th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Mark_Zuckerberg" title="Mark Zuckerberg">Mark Zuckerberg</a> (28% equity)</li> <li><a href="/wiki/Dustin_Moskovitz" title="Dustin Moskovitz">Dustin Moskovitz</a> (7%)</li> <li><a href="/wiki/Eduardo_Saverin" title="Eduardo Saverin">Eduardo Saverin</a> (<i>5%, formerly</i>)</li> <li><a href="/wiki/Chris_Hughes" title="Chris Hughes">Chris Hughes</a> (<i>1%, formerly</i>)</li> <li><a href="/wiki/Andrew_McCollum" title="Andrew McCollum">Andrew McCollum</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Board</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Mark_Zuckerberg" title="Mark Zuckerberg">Mark Zuckerberg</a></li> <li><a href="/wiki/Sheryl_Sandberg" title="Sheryl Sandberg">Sheryl Sandberg</a></li> <li><a href="/w/index.php?title=Peggy_Alford&amp;action=edit&amp;redlink=1" class="new" title="Peggy Alford (page does not exist)">Peggy Alford</a></li> <li><a href="/wiki/Marc_Andreessen" title="Marc Andreessen">Marc Andreessen</a></li> <li><a href="/wiki/Drew_Houston" title="Drew Houston">Drew Houston</a></li> <li><a href="/wiki/Nancy_Killefer" title="Nancy Killefer">Nancy Killefer</a></li> <li><a href="/wiki/Robert_M._Kimmitt" title="Robert M. Kimmitt">Robert M. Kimmitt</a></li> <li><a href="/wiki/Peter_Thiel" title="Peter Thiel">Peter Thiel</a></li> <li><a href="/w/index.php?title=Tracey_Travis&amp;action=edit&amp;redlink=1" class="new" title="Tracey Travis (page does not exist)">Tracey Travis</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Executive<br />officers</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"></div><table class="nowraplinks navbox-subgroup" style="border-spacing:0"><tbody><tr><th scope="row" class="navbox-group" style="width:1%">Current</th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Mark_Zuckerberg" title="Mark Zuckerberg">Mark Zuckerberg</a> (Chairman and CEO)</li> <li><a href="/wiki/Sheryl_Sandberg" title="Sheryl Sandberg">Sheryl Sandberg</a> (COO)</li> <li><a href="/wiki/David_Wehner" title="David Wehner">David Wehner</a> (CFO)</li> <li><a href="/wiki/Mike_Schroepfer" title="Mike Schroepfer">Mike Schroepfer</a> (CTO)</li> <li><a href="/wiki/Chris_Cox_(Facebook)" title="Chris Cox (Facebook)">Chris Cox</a> (Chief Product Officer)</li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Former</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Sean_Parker" title="Sean Parker">Sean Parker</a> (<i>4%, formerly</i>)</li> <li><a href="/wiki/Owen_Van_Natta" title="Owen Van Natta">Owen Van Natta</a></li> <li><a href="/wiki/Gideon_Yu" title="Gideon Yu">Gideon Yu</a></li> <li><a href="/wiki/Adam_D%27Angelo" title="Adam D&#39;Angelo">Adam D'Angelo</a></li> <li><a href="/wiki/Chris_Kelly_(entrepreneur)" title="Chris Kelly (entrepreneur)">Chris Kelly</a></li> <li><a href="/wiki/Bret_Taylor" title="Bret Taylor">Bret Taylor</a></li> <li><a href="/wiki/David_Ebersman" title="David Ebersman">David Ebersman</a></li> <li><a href="/wiki/Alex_Stamos" title="Alex Stamos">Alex Stamos</a></li></ul> </div></td></tr></tbody></table><div></div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Notable<br />employees</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"></div><table class="nowraplinks navbox-subgroup" style="border-spacing:0"><tbody><tr><th scope="row" class="navbox-group" style="width:1%">Current</th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Nick_Clegg" title="Nick Clegg">Nick Clegg</a> (VP of Global Affairs and Communications)</li> <li><a href="/wiki/Lars_Rasmussen_(software_developer)" title="Lars Rasmussen (software developer)">Lars Rasmussen</a> (Graph Search director)</li> <li><a href="/wiki/John_Carmack" title="John Carmack">John Carmack</a> (CTO of <a href="/wiki/Oculus_VR" class="mw-redirect" title="Oculus VR">Oculus VR</a>)</li> <li><a href="/wiki/Hugo_Barra" title="Hugo Barra">Hugo Barra</a> (VP of <a href="/wiki/Oculus_VR" class="mw-redirect" title="Oculus VR">Oculus VR</a>)</li> <li><a href="/wiki/Naomi_Gleit" title="Naomi Gleit">Naomi Gleit</a> (VP of social good)</li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Former</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Blake_Ross" title="Blake Ross">Blake Ross</a> (Director of Product)</li> <li><a href="/wiki/Ted_Ullyot" title="Ted Ullyot">Ted Ullyot</a> (VP, General Counsel, and Secretary)</li> <li><a href="/wiki/Matt_Cohler" title="Matt Cohler">Matt Cohler</a></li> <li><a href="/wiki/Charlie_Cheever" title="Charlie Cheever">Charlie Cheever</a></li> <li><a href="/wiki/Randi_Zuckerberg" title="Randi Zuckerberg">Randi Zuckerberg</a></li> <li><a href="/wiki/Yishan_Wong" title="Yishan Wong">Yishan Wong</a></li> <li><a href="/wiki/George_Hotz" title="George Hotz">George Hotz</a></li> <li><a href="/wiki/Joe_Lockhart" title="Joe Lockhart">Joe Lockhart</a></li> <li><a href="/wiki/Andrei_Alexandrescu" title="Andrei Alexandrescu">Andrei Alexandrescu</a> (research scientist)</li> <li><a href="/wiki/Elliot_Schrage" title="Elliot Schrage">Elliot Schrage</a> (VP of Global Communications, Marketing and Public Policy)</li></ul> </div></td></tr></tbody></table><div></div></td></tr></tbody></table><div></div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Open source</th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Apache_Cassandra" title="Apache Cassandra">Apache Cassandra</a></li> <li><a href="/wiki/Apache_Hive" title="Apache Hive">Apache Hive</a></li> <li><a href="/wiki/Apache_Thrift" title="Apache Thrift">Apache Thrift</a></li> <li><a href="/wiki/Buck_(software)" title="Buck (software)">Buck</a></li> <li><a href="/wiki/Facebook_Query_Language" title="Facebook Query Language">FQL</a></li> <li><a href="/wiki/Hack_(programming_language)" title="Hack (programming language)">Hack</a></li> <li><a href="/wiki/HHVM" title="HHVM">HHVM</a></li> <li><a href="/wiki/HipHop_for_PHP" title="HipHop for PHP">HipHop for PHP</a></li> <li><a href="/wiki/Infer_Static_Analyzer" title="Infer Static Analyzer">Infer</a></li> <li><a href="/wiki/MyRocks" title="MyRocks">MyRocks</a></li> <li><a href="/wiki/Open_Compute_Project" title="Open Compute Project">Open Compute Project</a></li> <li><a href="/wiki/Phabricator" title="Phabricator">Phabricator</a></li> <li><a class="mw-selflink selflink">React</a></li> <li><a href="/wiki/React_Native" title="React Native">React Native</a></li> <li><a href="/wiki/RocksDB" title="RocksDB">RocksDB</a></li> <li><a href="/wiki/Scribe_(log_server)" title="Scribe (log server)">Scribe</a></li> <li><a href="/wiki/Telecom_Infra_Project" title="Telecom Infra Project">Telecom Infra Project</a></li> <li><a href="/wiki/Tornado_(web_server)" title="Tornado (web server)">Tornado</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Mass media</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><i><a href="/wiki/The_Facebook_Effect" title="The Facebook Effect">The Facebook Effect</a></i></li> <li><i><a href="/wiki/The_Accidental_Billionaires" title="The Accidental Billionaires">The Accidental Billionaires</a></i></li> <li><i><a href="/wiki/The_Social_Network" title="The Social Network">The Social Network</a></i></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Concepts</th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Activity_stream" title="Activity stream">Activity stream</a></li> <li><a href="/wiki/Social_graph" title="Social graph">Social graph</a></li> <li><a href="/wiki/Friending_and_following" title="Friending and following">Friending and following</a></li> <li><a href="/wiki/Reblogging" title="Reblogging">Reblogging</a></li> <li><a href="/wiki/Fan-gating" title="Fan-gating">Fan-gating</a></li> <li><a href="/wiki/Facebook_diplomacy" title="Facebook diplomacy">Facebook diplomacy</a></li> <li><a href="/wiki/Facebook_like_button" title="Facebook like button">Facebook like button</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Business</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/History_of_Facebook" title="History of Facebook">History</a></li> <li><a href="/wiki/Timeline_of_Facebook" class="mw-redirect" title="Timeline of Facebook">Timeline</a></li> <li><a href="/wiki/List_of_mergers_and_acquisitions_by_Meta_Platforms" title="List of mergers and acquisitions by Meta Platforms">Acquisitions</a></li> <li><a href="/wiki/Facebook_F8" title="Facebook F8">f8 conference</a></li> <li><a href="/wiki/Initial_public_offering_of_Meta" class="mw-redirect" title="Initial public offering of Meta">IPO</a></li> <li><a href="/wiki/Censorship_of_Facebook" title="Censorship of Facebook">Censorship</a></li> <li><a href="/wiki/Criticism_of_Facebook" title="Criticism of Facebook">Criticism</a> <ul><li><a href="/wiki/Facebook%E2%80%93Cambridge_Analytica_data_scandal" title="Facebook–Cambridge Analytica data scandal">Cambridge Analytica data scandal</a></li> <li><a href="/wiki/2020_Facebook_ad_boycotts" title="2020 Facebook ad boycotts">2020 Facebook ad boycotts</a></li> <li><a href="/wiki/2021_Facebook_leak" title="2021 Facebook leak">2021 Facebook leak</a></li> <li><a href="/wiki/Privacy_concerns_with_Facebook" title="Privacy concerns with Facebook">Privacy</a></li> <li><a href="/wiki/Facebook_content_management_controversies" title="Facebook content management controversies">Content management</a></li></ul></li> <li><a href="/wiki/Lawsuits_involving_Meta_Platforms" title="Lawsuits involving Meta Platforms">Litigation</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Lists</th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/List_of_most-followed_Facebook_pages" title="List of most-followed Facebook pages">Most-followed Facebook pages</a></li> <li><a href="/wiki/List_of_most-viewed_online_videos_in_the_first_24_hours" title="List of most-viewed online videos in the first 24 hours">Most-viewed videos in the first 24 hours</a></li></ul> </div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Related</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><a href="/wiki/Priscilla_Chan" title="Priscilla Chan">Priscilla Chan</a> (wife of Mark Zuckerberg)</li> <li><a href="/wiki/Chan_Zuckerberg_Initiative" title="Chan Zuckerberg Initiative">Chan Zuckerberg Initiative</a></li> <li><a href="/wiki/Facebook_Aquila" title="Facebook Aquila">Aquila Internet relay drone</a></li> <li><a href="/wiki/Oversight_Board_(Facebook)" title="Oversight Board (Facebook)">Oversight Board</a></li> <li><a href="/wiki/Willow_Village" title="Willow Village">Willow Village</a></li> <li><a href="/wiki/WaveGroup_Sound" title="WaveGroup Sound">WaveGroup Sound</a></li> <li><a href="/wiki/2021_Facebook_outage" title="2021 Facebook outage">2021 Facebook outage</a></li></ul> </div></td></tr></tbody></table></div> <div class="navbox-styles nomobile"><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r1061467846"/></div><div role="navigation" class="navbox authority-control" aria-labelledby="Authority_control:_National_libraries_frameless&amp;#124;text-top&amp;#124;10px&amp;#124;alt=Edit_this_at_Wikidata&amp;#124;link=https&amp;#58;//www.wikidata.org/wiki/Q19399674#identifiers&amp;#124;class=noprint&amp;#124;Edit_this_at_Wikidata" style="padding:3px"><table class="nowraplinks hlist navbox-inner" style="border-spacing:0;background:transparent;color:inherit"><tbody><tr><th id="Authority_control:_National_libraries_frameless&amp;#124;text-top&amp;#124;10px&amp;#124;alt=Edit_this_at_Wikidata&amp;#124;link=https&amp;#58;//www.wikidata.org/wiki/Q19399674#identifiers&amp;#124;class=noprint&amp;#124;Edit_this_at_Wikidata" scope="row" class="navbox-group" style="width:1%"><a href="/wiki/Help:Authority_control" title="Help:Authority control">Authority control: National libraries</a> <a href="https://www.wikidata.org/wiki/Q19399674#identifiers" title="Edit this at Wikidata"><img alt="Edit this at Wikidata" src="//upload.wikimedia.org/wikipedia/en/thumb/8/8a/OOjs_UI_icon_edit-ltr-progressive.svg/10px-OOjs_UI_icon_edit-ltr-progressive.svg.png" decoding="async" width="10" height="10" style="vertical-align: text-top" class="noprint" srcset="//upload.wikimedia.org/wikipedia/en/thumb/8/8a/OOjs_UI_icon_edit-ltr-progressive.svg/15px-OOjs_UI_icon_edit-ltr-progressive.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/8/8a/OOjs_UI_icon_edit-ltr-progressive.svg/20px-OOjs_UI_icon_edit-ltr-progressive.svg.png 2x" data-file-width="20" data-file-height="20" /></a></th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em"> <ul><li><span class="uid"><a rel="nofollow" class="external text" href="https://d-nb.info/gnd/1106873289">Germany</a></span></li></ul> </div></td></tr></tbody></table></div></div></div></div>'
Whether or not the change was made through a Tor exit node (tor_exit_node)
false
Unix timestamp of change (timestamp)
'1659757782'