React (also known as React.js or ReactJS) is a free and open-source front-end JavaScript library[5][6] that aims to make building user interfaces based on components more "seamless".[5] It is maintained by Meta (formerly Facebook) and a community of individual developers and companies.[7][8][9]
React can be used to develop single-page, mobile, or server-rendered applications with frameworks like Next.js and Remix[a]. Because React is only concerned with the user interface and rendering components to the DOM, React applications often rely on libraries for routing and other client-side functionality.[11][12] A key advantage of React is that it only re-renders those parts of the page that have changed, avoiding unnecessary re-rendering of unchanged DOM elements.
[13] React adheres to the declarative programming paradigm.[14]: 76 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.[15]
React code is made of entities called components.[14]: 10–12 These components are modular and can be reused.[14]: 70 React applications typically consist of many layers of components. The components are rendered to a root element in the DOM using the React DOM library. When rendering a component, values are passed between components through props (short for "properties"). Values internal to a component are called its state.[16]
The two primary ways of declaring components in React are through function components and class components.[14]: 118 [17]: 10
Function components are declared with a function (using JavaScript function syntax or an arrow function expression) that accepts a single "props" argument and returns JSX. From React v16.8 onwards, function components can use state with the useState Hook.
useState
On February 16, 2019, React 16.8 was released to the public, introducing React Hooks.[18] Hooks are functions that let developers "hook into" React state and lifecycle features from function components.[19] Notably, Hooks do not work inside classes — they let developers use more features of React without classes.[20]
React provides several built-in hooks such as useState,[21][17]: 37 useContext,[14]: 11 [22][17]: 12 useReducer,[14]: 92 [22][17]: 65–66 useMemo[14]: 154 [22][17]: 162 and useEffect.[23][17]: 93–95 Others are documented in the Hooks API Reference.[24][14]: 62 useState and useEffect, which are the most commonly used, are for controlling state[14]: 37 and side effects,[14]: 61 respectively.
useContext
useReducer
useMemo
useEffect
There are two rules of hooks[25] which describe the characteristic code patterns that hooks rely on:
Although these rules cannot be enforced at runtime, code analysis tools such as linters can be configured to detect many mistakes during development. The rules apply to both usage of Hooks and the implementation of custom Hooks,[26] which may call other Hooks.
React server components (RSC) [27] are function components that run exclusively on the server. The concept was first introduced in the talk "Data Fetching with Server Components".[28] Though a similar concept to Server Side Rendering, RSCs do not send corresponding JavaScript to the client as no hydration occurs. As a result, they have no access to hooks. However, they may be asynchronous function, allowing them to directly perform asynchronous operations:
async function MyComponent() { const message = await fetchMessageFromDb(); return ( <div>Message: {message}</div> ); }
Currently, server components are most readily usable with Next.js.
Class components are declared using ES6 classes. They behave the same way that function components do, but instead of using Hooks to manage state and lifecycle events, they use the lifecycle methods on the React.Component base class.
React.Component
class ParentComponent extends React.Component { state = { color: 'green' }; render() { return ( <ChildComponent color={this.state.color} /> ); } }
The introduction of React Hooks with React 16.8 in February 2019 allowed developers to manage state and lifecycle behaviors within functional components, reducing the reliance on class components.
This trend aligns with the broader industry movement towards functional programming and modular design. As React continues to evolve, it is essential for developers to consider the benefits of functional components and React Hooks when building new applications or refactoring existing ones.[29]
React itself does not come with built-in support for routing. React is primarily a library for building user interfaces, and it does not include a full-fledged routing solution out of the box. Third-party libraries can be used to handle routing in React applications.[30] It allows the developer to define routes, manage navigation, and handle URL changes in a React-friendly way.
Another notable feature is the use of a virtual Document Object Model, or Virtual DOM. React creates an in-memory data-structure cache, computes the resulting differences, and then updates the browser's displayed DOM efficiently.[31] This process is called reconciliation. This allows the programmer to write code as if the entire page is rendered on each change, while React only renders the components that actually change. This selective rendering provides a major performance boost.[32][33]
When ReactDOM.render[34] is called again for the same component and target, React represents the new UI state in the Virtual DOM and determines which parts (if any) of the living DOM needs to change.[35]
ReactDOM.render
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.
ShouldComponentUpdate
componentDidMount
componentDidUpdate
componentWillUnmount
setInterval()
render
JSX, or JavaScript XML, is an extension to the JavaScript language syntax.[37] Similar in appearance to HTML,[14]: 11 JSX provides a way to structure component rendering using syntax familiar[14]: 15 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:
class App extends React.Component { render() { return ( <div> <p>Header</p> <p>Content</p> <p>Footer</p> </div> ); } }
The basic architecture of React applies beyond rendering HTML in the browser. For example, Facebook has dynamic charts that render to <canvas> tags,[38] and Netflix and PayPal use universal loading to render identical HTML on both the server and client.[39][40]
<canvas>
Server-side rendering (SSR) refers to the process of rendering a client-side JavaScript application on the server, rather than in the browser.[41] This can improve the performance of the application, especially for users on slower connections or devices.[42]
With SSR, the initial HTML that is sent to the client includes the fully rendered UI of the application.[43] This allows the client's browser to display the UI immediately, rather than having to wait for the JavaScript to download and execute before rendering the UI.[43]
React supports SSR, which allows developers to render React components on the server and send the resulting HTML to the client.[44] This can be useful for improving the performance of the application, as well as for search engine optimization purposes.[45]
React does not attempt to provide a complete application library. It is designed specifically for building user interfaces[5] 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.
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.[46] When used with React, this propagation is accomplished through component properties. Since its conception, Flux has been superseded by libraries such as Redux and MobX.[47]
Flux can be considered a variant of the observer pattern.[48]
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 USER_FOLLOWED_ANOTHER_USER.[49] The stores, which can be thought of as models, can alter themselves in response to actions received from the dispatcher.
USER_FOLLOWED_ANOTHER_USER
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, which features a single store, often called a single source of truth.[50]
In February 2019, useReducer was introduced as a React hook in the 16.8 release. It provides an API that is consistent with Redux, enabling developers to create Redux-like stores that are local to component states.[51]
Project status can be tracked via the core team discussion forum.[52] However, major changes to React go through the Future of React repository issues and pull requests.[53][54] This enables the React community to provide feedback on new potential features, experimental APIs and JavaScript syntax improvements.
React was created by Jordan Walke, a software engineer at Meta, who initially developed a prototype called "F-Bolt"[55] before later renaming it to "FaxJS". This early version is documented in Jordan Walke's GitHub repository.[1] Influences for the project included XHP, an HTML component library for PHP.
React was first deployed on Facebook's News Feed in 2011 and subsequently integrated into Instagram in 2012.[56] In May 2013, at JSConf US, the project was officially open-sourced, marking a significant turning point in its adoption and growth.[2]
React Native, which enables native Android, iOS, and 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.[57] React Fiber was to become the foundation of any future improvements and feature development of the React library.[58][needs update] The actual syntax for programming with React does not change; only the way that the syntax is executed has changed.[59] 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 DOM objects are called "fibers", and each can be operated and updated separately, allowing for smoother on-screen rendering.[60]
On September 26, 2017, React 16.0 was released to the public.[61]
On October 20, 2020, the React team released React v17.0, notable as the first major release without major changes to the React developer-facing API.[62]
On March 29, 2022, React 18 was released which introduced a new concurrent renderer, automatic batching and support for server side rendering with Suspense.[63]
On December 5, 2024, React 19 was released. This release introduced Actions, which simplify the process of making state updates using asynchronous functions rather than having to manually handle pending states, errors and optimistic updates. React 19 also included support for server components and improved static site generation.[64]
<div>{/* */}</div>
<audio>
<video>
<img>
<span>
ReactPerf.getLastMeasurements()
<link>
<source>
isRunning()
ReactTestRenderer.create()
getDerivedStateFromProps()
React.lazy()
ReactTestRenderer.act()
ReactTestUtils.act()
lazy
memo
The initial public release of React in May 2013 used the Apache License 2.0. In October 2014, React 0.12.00 replaced this with the 3-clause BSD license and added a separate PATENTS text file that permits usage of any Facebook patents related to the software:[66]
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.
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.[67]
Based on community feedback, Facebook updated the patent grant in April 2015 to be less ambiguous and more permissive:[68]
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.[69]
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]".[70] In August 2017, Facebook dismissed the Apache Foundation's downstream concerns and refused to reconsider their license.[71][72] The following month, WordPress decided to switch its Gutenberg and Calypso projects away from React.[73]
On September 23, 2017, Facebook announced that the following week, it would re-license Flow, 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".[74]
On September 26, 2017, React 16.0.0 was released with the MIT license.[75] The MIT license change has also been backported to the 15.x release line with React 15.6.2.[76]
JavaScript-based web application frameworks, such as React, provide extensive capabilities but come with associated trade-offs. These frameworks often extend or enhance features available through native web technologies, such as routing, component-based development, and state management. While native web standards, including Web Components, modern JavaScript APIs like Fetch and ES Modules, and browser capabilities like Shadow DOM, have advanced significantly, frameworks remain widely used for their ability to enhance developer productivity, offer structured patterns for large-scale applications, simplify handling edge cases, and provide tools for performance optimization. [77][78][79]
Frameworks can introduce abstraction layers that may contribute to performance overhead, larger bundle sizes, and increased complexity. Modern frameworks, such as React 18, address these challenges with features like concurrent rendering, tree-shaking, and selective hydration. While these advancements improve rendering efficiency and resource management, their benefits depend on the specific application and implementation context. Lightweight frameworks, such as Svelte and Preact, take different architectural approaches, with Svelte eliminating the virtual DOM entirely in favor of compiling components to efficient JavaScript code, and Preact offering a minimal, compatible alternative to React. Framework choice depends on an application’s requirements, including the team’s expertise, performance goals, and development priorities. [77][78][79]
A newer category of web frameworks, including enhance.dev, Astro, and Fresh, leverages native web standards while minimizing abstractions and development tooling. [80][81][82] These solutions emphasize progressive enhancement, server-side rendering, and optimizing performance. Astro renders static HTML by default while hydrating only interactive parts. Fresh focuses on server-side rendering with zero runtime overhead. Enhance.dev prioritizes progressive enhancement patterns using Web Components. While these tools reduce reliance on client-side JavaScript by shifting logic to build-time or server-side execution, they still use JavaScript where necessary for interactivity. This approach makes them particularly suitable for performance-critical and content-focused applications. [77][78][79]