Jump to content

React Native

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Rshermanfl (talk | contribs) at 18:37, 15 March 2024 (History: proofreading corrections). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
React Native
Developer(s)Meta and community
Initial releaseMarch 26, 2015; 10 years ago (2015-03-26)[1]
Stable release
0.79.1[2] Edit this on Wikidata / 15 April 2025; 41 days ago (15 April 2025)
Repositoryhttps://github.com/facebook/react-native
Written inJavaScript, Java, C++, Objective-C, Python
PlatformAndroid, Android TV, iOS, macOS, tvOS, Web, Windows, UWP, and VR
TypeApplication framework
LicenseMIT License
Websitereactnative.dev

React Native is an open-source UI software framework created by Meta Platforms, Inc.[3] It is used to develop applications for Android[4]: §Chapter 1 ,[5][6] Android TV,[7] iOS[4]: §Chapter 1 ,[6] macOS,[8] tvOS,[9] Web,[10] Windows[8] and UWP[11] by enabling developers to use the React framework along with native platform capabilities.[12] It is used to develop the Android and iOS applications at Facebook, Microsoft, and Shopify.[13] It is also being used to develop virtual reality applications at Oculus.[14]

History

In 2012 Mark Zuckerberg commented, "The biggest mistake we made as a company was betting too much on HTML as opposed to native".[15][16] Using HTML5 for Facebook's mobile version resulted in an unstable application that retrieved data slowly.[17] He promised Facebook would soon deliver a better mobile experience.

Inside Facebook, Jordan Walke found a way to generate UI elements for iOS from a background JavaScript thread, which became the basis for the React web framework. They decided to organize an internal hackathon to perfect this prototype in order to be able to build native apps with this technology.[18]

In 2015, after months of development, Facebook released the first version for the React JavaScript Configuration. During a technical talk,[19] Christopher Chedeau explained that Facebook was already using React Native in production for its Group App and its Ads Manager App.[20]

As of 2023 Facebook has opted to remove React Native as a platform for mobile.[21]The main reasons cited by Facebook for pulling projects off of React Native were financial. Meta had been investing a significant amount of money, and it was not seeing a return on its investment. The company stated that it was shifting its focus to projects that it believed had more potential for growth.

Facebook also cited technical limitations as a reason for its decision to pull out of React Native. The company stated that it had encountered several challenges while working on the framework.

React Native apps are known to have slower performance compared to natively built apps, which can be a drawback for users. While the performance may be acceptable for some Apps, as of 2024 other large scale "early adopters" of the Platform have reverted to native development, including: AirB-n-B, Udemy and some divisions of Microsoft. This is likely the same limitation all hybrid platforms face. React Native has made strides in improving thread management, but as of 2024, cannot be called equally performant with native applications.

Facebook also sited difficulty with maintaining a consistent codebase. React Native uses a single codebase for multiple platforms, which can lead to inconsistencies and make it harder to maintain. So called "cross platform" competitors, like Cordova and Xamarin have a similar requirement and a true, single cross platform has yet to emerge in the IT marketplace.

Facebook also believes React Native does not offer access to all native functionality. This limits the capabilities of the App, or at least the performance of platform calls. By it's very nature, React Native adds a layer or more of abstraction between the developer's code and the underlying operating system and UI rendering. For many memory or process intensive functions, this can be detrimental to performance. However, lacking the above mentioned requirements, a React Native user experience can be comparable to a native application user experience.

It can also be said that the platform lacks intuitive means to implement native third-party libraries, and has complex integration with native modules. Integrating native modules can be a complex and time-consuming process. Often integration must be hand coded in native languages in order to become accessible in JavaScript for consumption in a React Native application. This also by it nature, require a "codebase per platform" approach, adding to the cost and difficulty of development and maintenance.

These platform limitations contributed to Facebook's decision to wind down its involvement in the project, per their own statements on the matter. [22] React Native is not a fully compiled language, and as such can be 'decompiled.'

While it is unlikely that React Native as a platform will be uprooted in the short term; it's limitations have caused some early adopters to move off the platform. For those whose applications don't require high levels of performance, memory management, parallel computing, operating system services and easy 3rd Party library integration; it can still be solution. This is realistically a large group of Apps, and core development of the platform is ongoing.[23]

Implementation

The working principles of React Native are virtually identical to React except that React Native does not manipulate the DOM via the Virtual DOM.[4]: §Chapter 2  It runs in a background process (which interprets the JavaScript written by the developers) directly on the end-device and communicates with the native[4]: §Chapter 2  platform via serialized data over an asynchronous and batched bridge.[24][25]

React components wrap existing native code and interact with native APIs via React's declarative UI paradigm and JavaScript. TypeScript is often used over JavaScript in modern React Native applications due to its increased type safety. [26]

While React Native styling has a similar syntax to CSS, it does not use HTML or CSS.[4]: §Chapter 5 [27] Instead, messages from the JavaScript thread are used to manipulate native views.

React Native is also available for both Windows and macOS, which is currently maintained by Microsoft.

Hello World example

A Hello, World program in React Native looks like this:

import { AppRegistry, Text, View, Button } from 'react-native';
import React from 'react';

const HelloWorldApp = () => {
  const [count, setCount] = React.useState(0);

  const incrementCount = () => {
    setCount((prevCount) => prevCount + 1);
  };

  return (
    <View>
      <Text>Hello world!</Text>
      <Text>{count}</Text>
      <Button onPress={incrementCount} title="Increase Count" />
    </View>
  );
};

export default HelloWorldApp;

AppRegistry.registerComponent('HelloWorld', () => HelloWorldApp);

See also

Citations

  1. ^ "React Native: Bringing modern web techniques to mobile". 26 March 2015.
  2. ^ "Release 0.79.1". 15 April 2025. Retrieved 27 April 2025.
  3. ^ "Chapter 1. What Is React Native?". oreilly.com. O’Reilly Media, Inc. Retrieved 30 July 2020.
  4. ^ a b c d e Eisenman 2016.
  5. ^ "Android Release for React Native". 14 September 2015.
  6. ^ a b Shankland, Stephen (March 29, 2018). "Mozilla's radical open-source move helped rewrite rules of tech". CNET. Retrieved May 11, 2022.
  7. ^ "Building For TV Devices · React Native". reactnative.dev. Retrieved 2020-10-02.
  8. ^ a b "React Native for Windows + macOS · Build native Windows & macOS apps with Javascript and React". microsoft.github.io. Retrieved 2020-10-02.
  9. ^ "React Native for Apple TV". React Native for Apple TV. Retrieved 2020-10-02.
  10. ^ "React Native for Web". GitHub. Retrieved 2019-11-06.
  11. ^ Windows Apps Team (April 13, 2016). "React Native on the Universal Windows Platform". blogs.windows.com. Retrieved 2016-11-06.
  12. ^ "Out-of-Tree Platforms". reactnative.dev. Facebook, Inc. Retrieved 30 July 2020.
  13. ^ "React Native Showcase". react.native.dev. Retrieved 2023-04-04.
  14. ^ "React Native in H2 2021 · React Native". reactnative.dev. Retrieved 2021-08-20.
  15. ^ "Zuckerberg's Biggest Mistake? 'Betting on HTML5'". Mashable. Retrieved 7 April 2018.
  16. ^ Zuckerberg, Mark (2012-09-12). "Fireside Chat With Facebook Founder and CEO Mark Zuckerberg". TechCrunch (interview). Retrieved 2021-08-16.
  17. ^ Warren, Christina. "Zuckerberg's Biggest Mistake? 'Betting on HTML5'". Mashable. Retrieved 2020-10-29.
  18. ^ "A short Story about React Native". Retrieved 16 January 2018.
  19. ^ Christopher, Chedeau. "A Deep Dive into React Native". YouTube. Retrieved 16 January 2018.
  20. ^ "React Native: Bringing modern web techniques to mobile". 26 March 2015.
  21. ^ "Facebook's Departure from React Native". Retrieved 5 March 2024.
  22. ^ "Facebook's Departure from React Native". Retrieved 5 March 2024.
  23. ^ "What Is the Future of React Native? [2024]". Retrieved 5 March 2024.
  24. ^ "Bridging in React Native". 14 October 2015. Retrieved 16 January 2018.
  25. ^ "How we build React Native app: 7 things which save your development time. Part 2". Retrieved 2019-11-06.
  26. ^ "Using TypeScript". reactnative.dev. Meta Platforms, Inc. Retrieved 14 July 2023.
  27. ^ "React Native Style". Retrieved 24 February 2021.

References