close
The Wayback Machine - https://web.archive.org/web/20190603153303/https://github.com/facebook/react
Skip to content
A declarative, efficient, and flexible JavaScript library for building user interfaces.
Branch: master
Clone or download
ide and cpojer [react-native] Rewrite Haste imports in RN shims and add .fb.js exten…
…sion (#15786)

This commit is a follow-up to #15604, which explains more of the rationale behind moving React Native to path-based imports and the work needed in the React repository. In that linked PR, the generated renderers were updated but not the shims; this commit updates the shims.

The problem is that FB needs a different copy of the built renderers than the OSS versions so we need a way for FB code to import different modules than in OSS. This was previously done with Haste, but with the removal of Haste from RN, we need another mechanism. Talking with cpojer, we are using a `.fb.js` extension that Metro can be configured to prioritize over `.js`.

This commit generates FB's renderers with the `.fb.js` extension and OSS renderers with just `.js`. This way, FB can internally configure Metro to use the `.fb.js` implementations and OSS will use the `.js` ones, letting us swap out which implementation gets bundled.

Test Plan: Generated the renderers and shims with `yarn build` and then verified that the generated shims don't contain any Haste-style imports. Copied the renderers and shims into RN manually and launched the RNTester app to verify it loads end-to-end. Added `.fb.js` to the extensions in `metro.config.js` and verified that the FB-specific bundles loaded.
Latest commit 07da821 Jun 3, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
Image .circleci Move fixtures test to its own CI job May 29, 2019
Image .github Reword issue template Jan 3, 2018
Image fixtures using the wrong renderer's act() should warn (#15756) May 29, 2019
Image packages [react-native] Rewrite Haste imports in RN shims and add .fb.js exten… Jun 3, 2019
Image scripts [react-native] Rewrite Haste imports in RN shims and add .fb.js exten… Jun 3, 2019
Image .babelrc Remove ES3-specific transforms (#12716) Apr 30, 2018
Image .editorconfig Add insert_final_newline to editorconfig Sep 3, 2015
Image .eslintignore Use Yarn Workspaces (#11252) Oct 18, 2017
Image .eslintrc.js [React Native] Inline calls to FabricUIManager in shared code (#15490) Apr 29, 2019
Image .gitattributes .gitattributes to ensure LF line endings when we should Jan 18, 2014
Image .gitignore Parallelizes the build script across multiple processes (#15716) May 29, 2019
Image .mailmap Update .mailmap Sep 6, 2017
Image .nvmrc Add new docs website (#10896) Sep 28, 2017
Image .prettierrc.js Add `use strict` to .prettierrc.js (#13787) Oct 20, 2018
Image .watchmanconfig Added a .watchmanconfig file (#11581) Nov 17, 2017
Image AUTHORS Update authors for v16 (#10861) Sep 27, 2017
Image CHANGELOG.md Changelog Mar 28, 2019
Image CODE_OF_CONDUCT.md Updated url to Code of Conduct page (#13126) Jun 29, 2018
Image CONTRIBUTING.md [Gatsby] "https://facebook.github.io/react/" -> "https://reactjs.org/" ( Sep 30, 2017
Image LICENSE Drop the year from Facebook copyright headers and the LICENSE file. (#… Sep 7, 2018
Image README.md Remove coverage badge from README (#15216) Mar 26, 2019
Image appveyor.yml add nodejs 10 to windows test (#13241) Aug 2, 2018
Image dangerfile.js Update name of CI job in sizebot (#15767) May 29, 2019
Image netlify.toml add netlify toml file (#12350) May 20, 2018
Image package.json using the wrong renderer's act() should warn (#15756) May 29, 2019
Image yarn.lock update gcc version (#15034) Apr 4, 2019

README.md

React · GitHub license npm version CircleCI Status PRs Welcome

React is a JavaScript library for building user interfaces.

  • Declarative: React makes it painless to create interactive UIs. Design simple views for each state in your application, and React will efficiently update and render just the right components when your data changes. Declarative views make your code more predictable, simpler to understand, and easier to debug.
  • Component-Based: Build encapsulated components that manage their own state, then compose them to make complex UIs. Since component logic is written in JavaScript instead of templates, you can easily pass rich data through your app and keep state out of the DOM.
  • Learn Once, Write Anywhere: We don't make assumptions about the rest of your technology stack, so you can develop new features in React without rewriting existing code. React can also render on the server using Node and power mobile apps using React Native.

Learn how to use React in your own project.

Installation

React has been designed for gradual adoption from the start, and you can use as little or as much React as you need:

You can use React as a <script> tag from a CDN, or as a react package on npm.

Documentation

You can find the React documentation on the website.

Check out the Getting Started page for a quick overview.

The documentation is divided into several sections:

You can improve it by sending pull requests to this repository.

Examples

We have several examples on the website. Here is the first one to get you started:

function HelloMessage({ name }) {
  return <div>Hello {name}</div>;
}

ReactDOM.render(
  <HelloMessage name="Taylor" />,
  document.getElementById('container')
);

This example will render "Hello Taylor" into a container on the page.

You'll notice that we used an HTML-like syntax; we call it JSX. JSX is not required to use React, but it makes code more readable, and writing it feels like writing HTML. If you're using React as a <script> tag, read this section on integrating JSX; otherwise, the recommended JavaScript toolchains handle it automatically.

Contributing

The main purpose of this repository is to continue to evolve React core, making it faster and easier to use. Development of React happens in the open on GitHub, and we are grateful to the community for contributing bugfixes and improvements. Read below to learn how you can take part in improving React.

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 bugfixes and improvements, and how to build and test your changes to React.

Good First Issues

To help you get your feet wet and get you familiar with our contribution process, we have a list of good first issues that contain bugs which have a relatively limited scope. This is a great place to get started.

License

React is MIT licensed.

You can’t perform that action at this time.