Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

React (software)

From Wikipedia, the free encyclopedia
For the open-source mobile application framework, seeReact Native.
JavaScript library for building user interfaces
This article has multiple issues. Please helpimprove it or discuss these issues on thetalk page.(Learn how and when to remove these messages)
This articleneeds additional citations forverification. Please helpimprove this article byadding citations to reliable sources. Unsourced material may be challenged and removed.
Find sources: "React" software – news ·newspapers ·books ·scholar ·JSTOR
(May 2024) (Learn how and when to remove this message)
This articlemay contain excessive or inappropriate references toself-published sources. Please helpimprove it by removing references to unreliablesources where they are used inappropriately.(May 2024) (Learn how and when to remove this message)
(Learn how and when to remove this message)
React
Original author(s)Jordan Walke
Developer(s)Meta and community
Initial releaseMay 29, 2013; 11 years ago (2013-05-29)[1][2]
Stable release(s)
19.0.0[3] Edit this on Wikidata / 5 December 2024; 3 months ago (5 December 2024)
Preview release(s)
19.0.0-rc.1 / November 14, 2024; 4 months ago (2024-11-14)[4]
Repository
Written inJavaScript
PlatformWeb platform
TypeJavaScript library
LicenseMIT License
Websitereact.dev Edit this on Wikidata

React (also known asReact.js orReactJS) is afree and open-sourcefront-endJavaScript library[5][6] that aims to make buildinguser interfaces based oncomponents more "seamless".[5] It is maintained byMeta (formerly Facebook) and a community of individual developers and companies.[7][8][9]

React can be used to developsingle-page, mobile, orserver-rendered applications with frameworks likeNext.js andRemix[a]. Because React is only concerned with the user interface and rendering components to theDOM, React applications often rely onlibraries 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.

Notable features

[edit]

Declarative

[edit]

[13] React adheres to thedeclarative programmingparadigm.[14]: 76  Developers design views for each state of an application, and React updates and renders components when data changes. This is in contrast withimperative programming.[15]

Components

[edit]

React code is made of entities calledcomponents.[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 theDOM using the React DOM library. When rendering a component, values are passed between components throughprops (short for "properties"). Values internal to a component are called itsstate.[16]

The two primary ways of declaring components in React are through function components and class components.[14]: 118 [17]: 10 

Function components

[edit]

Function components are declared with a function (using JavaScript function syntax or anarrow function expression) that accepts a single "props" argument and returns JSX. From React v16.8 onwards, function components can use state with theuseState Hook.

React Hooks

[edit]

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 asuseState,[21][17]: 37 useContext,[14]: 11 [22][17]: 12 useReducer,[14]: 92 [22][17]: 65–66 useMemo[14]: 154 [22][17]: 162  anduseEffect.[23][17]: 93–95  Others are documented in the Hooks API Reference.[24][14]: 62 useState anduseEffect, which are the most commonly used, are for controlling state[14]: 37  and side effects,[14]: 61  respectively.

Rules of hooks

[edit]

There are two rules of hooks[25] which describe the characteristic code patterns that hooks rely on:

  1. "Only call hooks at the top level" — do not call hooks from inside loops, conditions, or nested statements so that the hooks are called in the same order each render.
  2. "Only call hooks from React functions" — do not call hooks from plain JavaScript functions so that stateful logic stays with the component.

Although these rules cannot be enforced at runtime, code analysis tools such aslinters 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.

Server components

[edit]

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 beasynchronous function, allowing them to directly perform asynchronous operations:

asyncfunctionMyComponent(){constmessage=awaitfetchMessageFromDb();return(<div>Message:{message}</div>);}

Currently, server components are most readily usable withNext.js.

Class components

[edit]

Class components are declared usingES6 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 theReact.Componentbase class.

classParentComponentextendsReact.Component{state={color:'green'};render(){return(<ChildComponentcolor={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]

Routing

[edit]

React itself does not come with built-in support forrouting. 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.

There is a Virtual DOM that is used to implement the real DOM

Virtual DOM

[edit]

Another notable feature is the use of a virtualDocument Object Model, orVirtual DOM. React creates anin-memory data-structure cache, computes the resulting differences, and then updates the browser's displayed DOM efficiently.[31] This process is calledreconciliation. 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]

Updates

[edit]

WhenReactDOM.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]

Updates to realDOM are subject to virtualDOM
The virtualDOM will update the realDOM in real-time effortlessly

Lifecycle methods

[edit]

Lifecycle methods for class-based components use a form ofhooking that allows the execution of code at set points during a component's lifetime.

  • ShouldComponentUpdate allows the developer to prevent unnecessary re-rendering of a component by returning false if a render is not required.
  • componentDidMount is called once the component has "mounted" (the component has been created in the user interface, often by associating it with aDOM node). This is commonly used to trigger data loading from a remote source via anAPI.
  • componentDidUpdate is invoked immediately after updating occurs.[36]
  • componentWillUnmount 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 anysetInterval() instances that are related to the component, or an "eventListener" set on the "document" because of the presence of the component)
  • render 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

[edit]
Main article:JSX

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 forPHP calledXHP.

An example of JSX code:

classAppextendsReact.Component{render(){return(<div><p>Header</p><p>Content</p><p>Footer</p></div>);}}

Architecture beyond HTML

[edit]

The basicarchitecture of React applies beyond rendering HTML in the browser. For example, Facebook has dynamic charts that render to<canvas> tags,[38] and Netflix andPayPal use universal loading to render identical HTML on both the server and client.[39][40]

Server-side rendering

[edit]

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 forsearch engine optimization purposes.[45]

Common idioms

[edit]

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.

Unidirectional data flow

[edit]

To support React's concept of unidirectional data flow (which might be contrasted withAngularJS's bidirectional flow), the Flux architecture was developed as an alternative to the popularmodel–view–controller architecture. Flux featuresactions which are sent through a centraldispatcher to astore, 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 asRedux and MobX.[47]

Flux can be considered a variant of theobserver pattern.[48]

A React component under the Flux architecture should not directly modify any props passed to it, but should be passedcallback functions that createactions 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 typeUSER_FOLLOWED_ANOTHER_USER.[49] 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 beingRedux, which features a single store, often called asingle source of truth.[50]

In February 2019,useReducer was introduced as aReact 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]

Future development

[edit]

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 andpull requests.[53][54] This enables the React community to provide feedback on new potential features, experimental APIs and JavaScript syntax improvements.

History

[edit]

React was created by Jordan Walke, a software engineer atMeta, 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 includedXHP, anHTML component library forPHP.

React was first deployed on Facebook'sNews Feed in 2011 and subsequently integrated intoInstagram 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 nativeAndroid,iOS, andUWP 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 virtualDOM 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]

Version history of react
VersionRelease DateChanges
0.3.029 May 2013Initial Public Release
0.4.020 July 2013Support for comment nodes<div>{/* */}</div>, Improved server-side rendering APIs, Removed React.autoBind, Support for the key prop, Improvements to forms, Fixed bugs.
0.5.020 October 2013Improve 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.020 December 2013Added support for rows & cols, defer & async, loop for<audio> &<video>, autoCorrect attributes. Added onContextMenu events, Upgraded jstransform and esprima-fb tools, Upgraded browserify.
0.9.020 February 2014Added 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<img> elements.
0.10.021 March 2014Added support for srcSet and textAnchor attributes, add update function for immutable data, Ensure all void elements do not insert a closing tag.
0.11.017 July 2014Improved 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.021 November 2014Added 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.010 March 2015Deprecated 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.
15.0.07 April 2016Initial render now uses document.createElement instead of generating HTML, No more extra<span>s, Improved SVG support,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.020 May 2016Fix a batching bug, Ensure use of the latest object-assign, Fix regression, Remove use of merge utility, Renamed some modules.
15.2.01 July 2016Include component stack information, Stop validating props at mount time, Add React.PropTypes.symbol, Add onLoad handling to<link> and onError handling to<source> element, AddisRunning() API, Fix performance regression.
15.3.030 July 2016Add 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.4.016 November 2016React package and browser build no longer includes React DOM, Improved development performance, Fixed occasional test failures, update batchedUpdates API, React Perf, andReactTestRenderer.create().
15.5.07 April 2017Added 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.6.013 June 2017Add 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.026 September 2017Improved 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.09 November 2017Discontinuing 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.029 March 2018Add 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.4.024 May 2018Add support for Pointer Events specification, Add the ability to specify propTypes, Fix reading context, Fix thegetDerivedStateFromProps() support, Fix a testInstance.parent crash, Add React.unstable_Profiler component for measuring performance, Change internal event names.
16.5.05 September 2018Add 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.023 October 2018Add support for contextType, Support priority levels, continuations, and wrapped callbacks, Improve the fallback mechanism, Fix gray overlay on iOS Safari, AddReact.lazy() for code splitting components.
16.7.020 December 2018Fix 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.06 February 2019Add Hooks, AddReactTestRenderer.act() andReactTestUtils.act() for batching updates, Support synchronous thenables passed to React.lazy(), Improve useReducer Hook lazy initialization API.
16.9.09 August 2019AddReact.Profiler API for gathering performance measurements programmatically. Remove unstable_ConcurrentMode in favor of unstable_createRoot
16.10.027 September 2019Fix edge case where a hook update was not being memoized. Fix heuristic for determining when to hydrate, so we do not 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.11.022 October 2019Fix 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.014 November 2019React DOM – Fix passive effects (useEffect) not being fired in a multi-root app. React Is – Fixlazy andmemo types considered elements instead of components
16.13.026 February 2020Features added in React Concurrent mode. Fix regressions in React core library and React Dom.
16.14.014 October 2020Add support for the new JSX transform.
17.0.020 October 2020"No New Features" enables gradual React updates from older versions. Add new JSX Transform, Changes to Event Delegation
18.0.029 March 2022Concurrent React, Automatic batching, New Suspense Features, Transitions, Client and Server Rendering APIs, New Strict Mode Behaviors, New Hooks[65]
18.1.026 April 2022Many fixes and performance improvements
18.2.014 June 2022Many more fixes and performance improvements
18.3.025 April 2024Adds deprecation warnings for features in React 19.
19.0.05 December 2024Actions, new hooks (useActionState, useFormStatus, useOptimistic), use API, Server Components, Server Actions, passing ref as a normal prop, improved hydration diffs, improved Context API, cleanup functions for refs, improved useDeferredValue API, support for document metadata, support for stylesheets, support for async scripts, support for preloading resources, improved error reporting, and support for custom elements.

Licensing

[edit]

The initial public release of React in May 2013 used theApache License 2.0. In October 2014, React 0.12.00 replaced this with the3-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]

TheApache 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 standardMIT 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]

Comparison with other frameworks

[edit]

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 emphasizeprogressive 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]

See also

[edit]

Notes

[edit]
  1. ^Merged intoReact Router since React Router v7[10]

References

[edit]
  1. ^Occhino, Tom; Walke, Jordan (5 August 2013)."JS Apps at Facebook".YouTube.Archived from the original on 31 May 2022. Retrieved22 Oct 2018.
  2. ^"Is React a Library or a Framework? Here's Why it Matters".freeCodeCamp.org. 2021-04-12. Retrieved2024-10-12.
  3. ^"React v19". 5 December 2024. Retrieved5 December 2024.
  4. ^"What's new in React 19".Archived from the original on 2024-05-12. Retrieved2024-05-12.
  5. ^abc"React – A JavaScript library for building user interfaces".reactjs.org.Archived from the original on April 8, 2018. Retrieved7 April 2018.
  6. ^"Chapter 1. What Is React? - What React Is and Why It Matters [Book]".www.oreilly.com.Archived from the original on May 6, 2023. Retrieved2023-05-06.
  7. ^Krill, Paul (May 15, 2014)."React: Making faster, smoother UIs for data-driven Web apps".InfoWorld.Archived from the original on 2018-06-12. Retrieved2021-02-23.
  8. ^Hemel, Zef (June 3, 2013)."Facebook's React JavaScript User Interfaces Library Receives Mixed Reviews".infoq.com.Archived from the original on May 26, 2022. Retrieved2022-01-11.
  9. ^Dawson, Chris (July 25, 2014)."JavaScript's History and How it Led To ReactJS".The New Stack.Archived from the original on Aug 6, 2020. Retrieved2020-07-19.
  10. ^Lybrand, Brooks (2024-05-15)."Merging Remix and React Router".remix.run. Retrieved2024-12-25.
  11. ^Dere 2017.
  12. ^Panchal 2022.
  13. ^"React Introduction".GeeksforGeeks. 2017-09-27. Retrieved2024-10-12.
  14. ^abcdefghijklWieruch 2020.
  15. ^Schwarzmüller 2018.
  16. ^"Components and Props".React. Facebook.Archived from the original on 7 April 2018. Retrieved7 April 2018.
  17. ^abcdefLarsen 2021.
  18. ^"Introducing Hooks". react.js.Archived from the original on 2018-10-25. Retrieved2019-05-20.
  19. ^"Hooks at a Glance – React".reactjs.org.Archived from the original on 2023-03-15. Retrieved2019-08-08.
  20. ^"What the Heck is React Hooks?".Soshace. 2020-01-16.Archived from the original on 2022-05-31. Retrieved2020-01-24.
  21. ^"Using the State Hook – React".reactjs.org.Archived from the original on 2022-07-30. Retrieved2020-01-24.
  22. ^abc"Using the State Hook – React".reactjs.org.Archived from the original on 2022-07-30. Retrieved2020-01-24.
  23. ^"Using the Effect Hook – React".reactjs.org.Archived from the original on 2022-08-01. Retrieved2020-01-24.
  24. ^"Hooks API Reference – React".reactjs.org.Archived from the original on 2022-08-05. Retrieved2020-01-24.
  25. ^"Rules of Hooks – React".reactjs.org.Archived from the original on 2021-06-06. Retrieved2020-01-24.
  26. ^"Building Your Own Hooks – React".reactjs.org.Archived from the original on 2022-07-17. Retrieved2020-01-24.
  27. ^"React Labs: What We've Been Working On – March 2023".react.dev.Archived from the original on 2023-07-26. Retrieved2023-07-23.
  28. ^Abramov, Dan; Tan, Lauren; Savona, Joseph; Markbåge, Sebastian (2020-12-21)."Introducing Zero-Bundle-Size React Server Components".react.dev. Retrieved2024-09-28.
  29. ^Chourasia, Rawnak (2023-03-08)."Convert Class Component to Function(Arrow) Component – React".Code Part Time.Archived from the original on 2023-08-15. Retrieved2023-08-15.
  30. ^"Mastering React Router – The Ultimate Guide". 2023-07-12.Archived from the original on 2023-07-26. Retrieved2023-07-26.
  31. ^"Refs and the DOM".React Blog.Archived from the original on 2022-08-07. Retrieved2021-07-19.
  32. ^"React: The Virtual DOM".Codecademy.Archived from the original on 2021-10-28. Retrieved2021-10-14.
  33. ^Aggarwal, Sanchit (March 2018)."Modern Web-Development using ReactJS"(PDF).International Journal of Recent Research Aspects. pp. 133–137.Archived(PDF) from the original on 17 April 2024. Retrieved11 December 2024.
  34. ^"ReactDOM – React".reactjs.org.Archived from the original on 2023-01-08. Retrieved2023-01-08.
  35. ^"Reconciliation – React".reactjs.org.Archived from the original on 2023-01-08. Retrieved2023-01-08.
  36. ^"React.Component – React".legacy.reactjs.org.Archived from the original on 2024-04-09. Retrieved2024-04-09.
  37. ^"Draft: JSX Specification".JSX. Facebook. 2022-03-08.Archived from the original on 2022-04-02. Retrieved7 April 2018.
  38. ^Hunt, Pete (2013-06-05)."Why did we build React? – React Blog".reactjs.org. Archived fromthe original on 2015-04-06. Retrieved2022-02-17.
  39. ^"PayPal Isomorphic React".medium.com. 2015-04-27.Archived from the original on 2019-02-08. Retrieved2019-02-08.
  40. ^"Netflix Isomorphic React".netflixtechblog.com. 2015-01-28.Archived from the original on 2016-12-17. Retrieved2022-02-14.
  41. ^"Server-side rendering (SSR) - MDN Web Docs Glossary".MDN Web Docs. Mozilla. Retrieved7 March 2025.
  42. ^"Rendering on the Web".web.dev. Google. 6 February 2019. Retrieved7 March 2025.
  43. ^abJain, Atishay (10 November 2018)."Render Caching for React".CSS-Tricks. Retrieved7 March 2025.
  44. ^"Server React DOM APIs".React Documentation. Meta Platforms. Retrieved7 March 2025.
  45. ^"Rendering (Next.js Documentation)".Next.js Documentation. Vercel. Retrieved7 March 2025.
  46. ^"In Depth OverView".Flux. Facebook. Archived fromthe original on 7 August 2022. Retrieved7 April 2018.
  47. ^"Flux Release 4.0".Github.Archived from the original on 31 May 2022. Retrieved26 February 2021.
  48. ^Johnson, Nicholas."Introduction to Flux – React Exercise".Nicholas Johnson.Archived from the original on 31 May 2022. Retrieved7 April 2018.
  49. ^Abramov, Dan."The History of React and Flux with Dan Abramov".Three Devs and a Maybe.Archived from the original on 19 April 2018. Retrieved7 April 2018.
  50. ^"State Management Tools – Results".The State of JavaScript.Archived from the original on 31 May 2022. Retrieved29 October 2021.
  51. ^"React v16.8: The One with Hooks".Archived from the original on 2023-01-08. Retrieved2023-01-08.
  52. ^"Meeting Notes".React Discuss. Archived fromthe original on 2015-12-22. Retrieved2015-12-13.
  53. ^"reactjs/react-future – The Future of React".GitHub.Archived from the original on 2022-07-13. Retrieved2015-12-13.
  54. ^"facebook/react – Feature request issues".GitHub.Archived from the original on 2022-07-09. Retrieved2015-12-13.
  55. ^"React.js: The Documentary".Youtube. Honeypot. 10 February 2023.Archived from the original on 2024-01-19. Retrieved2024-05-27.
  56. ^Lopez, Marny (13 May 2024)."Why React is so widely adopted by web developers?".Devlane.Archived from the original on 20 June 2024. Retrieved11 December 2024.
  57. ^Lardinois 2017.
  58. ^"React Fiber Architecture".Github.Archived from the original on 10 May 2018. Retrieved19 April 2017.
  59. ^"Facebook announces React Fiber, a rewrite of its React framework".TechCrunch. 18 April 2017.Archived from the original on 2018-06-14. Retrieved2018-10-19.
  60. ^"GitHub – acdlite/react-fiber-architecture: A description of React's new core algorithm, React Fiber".github.com.Archived from the original on 2018-05-10. Retrieved2018-10-19.
  61. ^"React v16.0". react.js. 2017-09-26.Archived from the original on 2017-10-03. Retrieved2019-05-20.
  62. ^url=https://reactjs.org/blog/2020/08/10/react-v17-rc.htmlArchived 2020-08-10 at theWayback Machine
  63. ^"React 18".React. Retrieved7 December 2024.
  64. ^"React 19".React. Retrieved7 December 2024.
  65. ^"React v18.0".reactjs.org.Archived from the original on 2022-03-29. Retrieved2022-04-12.
  66. ^"React CHANGELOG.md".GitHub.Archived from the original on 2020-04-28. Retrieved2015-12-09.
  67. ^Liu, Austin."A compelling reason not to use ReactJS".Medium.Archived from the original on 2022-05-31. Retrieved2015-12-09.
  68. ^"Updating Our Open Source Patent Grant".Archived from the original on 2020-11-08. Retrieved2015-12-09.
  69. ^"Additional Grant of Patent Rights Version 2".GitHub.Archived from the original on 2022-05-31. Retrieved2015-12-09.
  70. ^"ASF Legal Previously Asked Questions". Apache Software Foundation.Archived from the original on 2018-02-06. Retrieved2017-07-16.
  71. ^"Explaining React's License".Facebook.Archived from the original on 2021-05-06. Retrieved2017-08-18.
  72. ^"Consider re-licensing to AL v2.0, as RocksDB has just done".Github.Archived from the original on 2022-07-27. Retrieved2017-08-18.
  73. ^"WordPress to ditch React library over Facebook patent clause risk".TechCrunch. 15 September 2017.Archived from the original on 2022-05-31. Retrieved2017-09-16.
  74. ^"Relicensing React, Jest, Flow, and Immutable.js".Facebook Code. 2017-09-23.Archived from the original on 2020-12-06. Retrieved2017-09-23.
  75. ^Clark, Andrew (September 26, 2017)."React v16.0§MIT licensed".React Blog.Archived from the original on October 3, 2017. RetrievedOctober 18, 2017.
  76. ^Hunzaker, Nathan (September 25, 2017)."React v15.6.2".React Blog.Archived from the original on May 31, 2022. RetrievedOctober 18, 2017.
  77. ^abcUzayr, Sufyan bin; Cloud, Nicholas; Ambler, Tim (November 2019).JavaScript Frameworks for Modern Web Development: The Essential Frameworks, Libraries, and Tools to Learn Right Now. Apress.ISBN 978-1484249949.
  78. ^abcBuilding Native Web Components: Front-End Development with Polymer and Vue.js.ISBN 978-1484259047.
  79. ^abcHands-On JavaScript High Performance: Build faster web apps using Node.js, Svelte.js, and WebAssembly.ISBN 978-1838821098.
  80. ^"Enhance".GitHub.
  81. ^"Astro framework".GitHub.
  82. ^"Fresh".GitHub.

Bibliography

[edit]

External links

[edit]
Libraries
Concepts
.NET
C++
ColdFusion
Common Lisp
Haskell
Java
JavaScript
Perl
PHP
Python
Ruby
Rust
Scala
Smalltalk
Other languages
Dialects
Engines
(comparison)
Frameworks
Client-side
Server-side
Multiple
  • Cappuccino
Libraries
People
Other
Products
and services
Facebook
Instagram
Hardware
Other
Former
People
Founders
Board
Current
Former
Executive
officers
Current
Former
Oversight
Board
Members
Board of
Trustees
Former
members
Notable
employees
Current
Former
Open source
Mass media
Concepts
Business
Lists
Related
Authority control databases: NationalEdit this at Wikidata
Retrieved from "https://en.wikipedia.org/w/index.php?title=React_(software)&oldid=1279554393"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp