A framework for building native apps with React.
JavaScript Java Objective-C C++ Objective-C++ C Other
Switch branches/tags
Latest commit dc79269 Aug 23, 2017 @rafeca rafeca committed with facebook-github-bot Add @providesModule annotation to Animated files
Reviewed By: mjesun

Differential Revision: D5687435

fbshipit-source-id: 515512167bc9f579a944b45de9e6427da39c9f0d
Permalink
Failed to load latest commit information.
.github Cleanup stray markdown files, update contributing guidelines Aug 4, 2017
ContainerShip Move HelloWorld template to a single index.js entry point Aug 3, 2017
IntegrationTests Upgrade fbsource/xplat/js to Flow v0.53.0 Aug 18, 2017
Libraries Add @providesModule annotation to Animated files Aug 23, 2017
RNTester Upgrade fbsource/xplat/js to Flow v0.53.0 Aug 18, 2017
React ScrollView: `contentOffset` validatation now respects `contentInset` Aug 22, 2017
ReactAndroid Expose method to set custom baseline function Aug 23, 2017
ReactCommon Fix const declaration mismatch and double/float mix Aug 23, 2017
babel-preset react-native: release new babel-preset version Aug 22, 2017
blog Add Performance in Marketplace blog post Aug 8, 2017
bots Flag large pull requests, add large-pr command Aug 17, 2017
danger Flag large pull requests, add large-pr command Aug 17, 2017
docs Update GettingStarted.md Aug 19, 2017
flow Upgrade fbsource/xplat/js to Flow v0.53.0 Aug 18, 2017
gradle/wrapper Android - Update Gradle to 2.2.3 Jan 31, 2017
jest Disallow trailing commas in react-native-github Aug 17, 2017
keystores Apply auto-formatter for BUCK files in fbandroid. Feb 27, 2017
lib Revert D5409825: [RN] Convert easy files to Prettier Jul 13, 2017
local-cli Return meaningful error when no devices available Aug 23, 2017
react-native-cli Revert D5409825: [RN] Convert easy files to Prettier Jul 13, 2017
react-native-git-upgrade Revert D5409825: [RN] Convert easy files to Prettier Jul 13, 2017
scripts Fixed issue with path containing spaces Aug 23, 2017
third-party-podspecs Apple TV Cocoapods support Jul 18, 2017
website Fix button spacing and layout on small screens Aug 19, 2017
.buckconfig update gitignore & fix links May 22, 2017
.buckjavaargs limiting BUCK's memory for CI Feb 1, 2016
.editorconfig Fix indent of .gradle files Oct 19, 2016
.eslintignore Exclude the dangerfile from eslint. Jul 19, 2017
.eslintrc Disallow trailing commas in react-native-github Aug 17, 2017
.flowconfig Upgrade fbsource/xplat/js to Flow v0.53.0 Aug 18, 2017
.gitattributes Added a .gitattributes file, ensuring that Bash script source files (… Oct 14, 2015
.gitignore Adds Danger support Jul 18, 2017
.npmignore Update .npmignore to include generated bundle file Feb 3, 2017
.travis.yml Add travis bot for react-native Aug 9, 2017
CONTRIBUTING.md Cleanup stray markdown files, update contributing guidelines Aug 4, 2017
DockerTests.md Docker Testing Environment for Android & JS Feb 24, 2017
Jenkinsfile Container Testing Updates Apr 12, 2017
LICENSE Update license Mar 23, 2015
LICENSE-docs More licenses Mar 25, 2015
PATENTS Update Patent Grant Apr 10, 2015
README.md How to Contribute updates Jul 20, 2017
React.podspec fishhook nwlog_legacy_v to avoid log spam on websocket reconnect Aug 8, 2017
Releases.md Update Releases.md Jul 17, 2017
Windows Fix tutorial link in README.md Jun 14, 2016
breaking-changes.md DOCS ONLY: Update breaking changes location in breaking-changes.md: m… Feb 3, 2017
build.gradle Update gradle-download-task from 2.0.0 to 3.1.2 to fix boost zip down… Dec 8, 2016
circle.yml Adds Danger support Jul 18, 2017
cli.js Revert D5409825: [RN] Convert easy files to Prettier Jul 13, 2017
gradlew Update gradle wrapper binary and scripts Sep 9, 2016
gradlew.bat Update gradle wrapper binary and scripts Sep 9, 2016
jest-preset.json Remove remnants of the packager Jul 7, 2017
package.json Update to [email protected] Aug 18, 2017
react.gradle Add ability to customize CLI path Apr 10, 2017
rn-cli.config.js Move Array<string> to $ReadOnlyArray<string>. Separate polyfill list … Jul 13, 2017
rn-get-polyfills.js Move Array<string> to $ReadOnlyArray<string>. Separate polyfill list … Jul 13, 2017
runXcodeTests.sh Re-license and rename UIExplorer integration test app as RNTester May 8, 2017
settings.gradle Cleanup settings.gradle Jul 28, 2017
setupBabel.js Make prospective syntax compatible Aug 16, 2017

README.md

React Native · Travis CI Status Circle CI Status npm version PRs Welcome

Learn once, write anywhere: Build mobile apps with React.

  • Build native mobile apps using JavaScript and React: React Native lets you build mobile apps using only JavaScript. It uses the same design as React, letting you compose a rich mobile UI from declarative components.
  • A React Native app is a real mobile app: With React Native, you don't build a "mobile web app", an "HTML5 app", or a "hybrid app". You build a real mobile app that's indistinguishable from an app built using Objective-C, Java, or Swift. React Native uses the same fundamental UI building blocks as regular iOS and Android apps. You just put those building blocks together using JavaScript and React.
  • Don't waste time recompiling: React Native lets you build your app faster. Instead of recompiling, you can reload your app instantly. With hot reloading, you can even run new code while retaining your application state. Give it a try - it's a magical experience.
  • Use native code when you need to: React Native combines smoothly with components written in Objective-C, Java, or Swift. It's simple to drop down to native code if you need to optimize a few aspects of your application. It's also easy to build part of your app in React Native, and part of your app using native code directly - that's how the Facebook app works.

The focus of React Native is on developer efficiency across all the platforms you care about - learn once, write anywhere. Facebook uses React Native in multiple production apps and will continue investing in React Native.

See the official React Native website for an introduction to React Native.

Supported operating systems are >= Android 4.1 (API 16) and >= iOS 8.0.

Getting Started

Follow the Getting Started guide. The recommended way to install React Native depends on your project. Here you can find short guides for the most common scenarios:

Documentation

The website’s documentation is divided into multiple sections.

Another great way to learn more about the components and APIs included with React Native is to read their source. Look under the Libraries/Components directory for components like ScrollView and TextInput, for example. The RNTester example is also here to demonstrate some of the ways to use these components. From the source you can get an accurate understanding of each component’s behavior and API.

The React Native documentation only discusses the components, APIs and topics specific to React Native (React on iOS and Android). For further documentation on the React API that is shared between React Native and React DOM, refer to the React documentation.

Upgrading

React Native is under active development. See the guide on upgrading React Native to keep your project up-to-date.

Contributing

Read below to learn how you can take part in improving React Native.

Code of Conduct

Facebook has adopted a Code of Conduct that we expect project participants to adhere to. Please read the full text so that you can understand what actions will and will not be tolerated.

Contributing Guide

Read our contributing guide to learn about our development process, how to propose bug fixes and improvements, and how to build and test your changes to React Native.

Beginner Friendly Bugs

We have a list of beginner friendly issues to help you get your feet wet in the React Native codebase and familiar with our contribution process. This is a great place to get started.

License

React is BSD licensed. We also provide an additional patent grant.

React documentation is Creative Commons licensed.