A declarative, efficient, and flexible JavaScript library for building user interfaces.
JavaScript C++ TypeScript CoffeeScript Python HTML Other
Pull request Compare This branch is 704 commits ahead, 1571 commits behind master.
Latest commit 4294a7c Jan 5, 2017 @gaearon gaearon Fix AMD and Brunch issues (#8686)
* Add manual build fixtures

* Inject ReactDOM into ReactWithAddons from ReactWithAddons

We used to read ReactDOM as a global inside ReactAddonsDOMDependenciesUMDShim.
This didn't work in AMD environments such as RequireJS and SystemJS.

Instead, I changed it so that ReactDOM gets injected into ReactWithAddons by ReactDOM itself.
This way we don't have to try to require it (which wouldn't work because AMD doesn't handle circular dependencies well).

This means you have to load ReactDOM first before using ReactDOM-dependent addons, but this was already the case before.

This commit makes all build fixtures pass.

* Memoize ReactDOM to avoid going into require on every access

* Add Brunch fixture

* Inline requires to work around Brunch bug

See #8556 and brunch/brunch#1591 (comment) for context.
This appears to be a Brunch bug but we can keep a temporary fix until the next major.

(cherry picked from commit ca2c71c)
Permalink
Failed to load latest commit information.
docs docs update for v15.4.1 Nov 23, 2016
eslint-rules
examples Build React DOM Fiber package (#7173) Oct 3, 2016
fixtures
flow
grunt
gulp/tasks
mocks Year-agnostic copyright message, like React Native uses, to prevent t… Dec 29, 2015
packages
scripts
src
starter Fix file reference typo in starter Nov 30, 2015
.babelrc
.editorconfig
.eslintignore
.eslintrc.js
.flowconfig Update ignores in flowconfig (#7722) Oct 4, 2016
.gitattributes
.gitignore
.mailmap
.travis.yml
AUTHORS
CHANGELOG.md
CONTRIBUTING.md Move How to Contribute to documentation and update it (#7817) Sep 27, 2016
Gruntfile.js
LICENSE
LICENSE-docs Update licenses for docs and examples Oct 22, 2014
LICENSE-examples Update licenses for docs and examples Oct 22, 2014
PATENTS
README.md
gulpfile.js
npm-shrinkwrap.json
package.json

README.md

React Build Status Coverage Status npm version 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.

Examples

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

class HelloMessage extends React.Component {
  render() {
    return <div>Hello {this.props.name}</div>;
  }
}

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

This example will render "Hello John" 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. A simple transform is included with React that allows converting JSX into native JavaScript for browsers to digest.

Installation

The fastest way to get started is to serve JavaScript from a CDN. We're using unpkg below but React is also available on cdnjs and jsdelivr:

<!-- The core React library -->
<script src="https://unpkg.com/[email protected]/dist/react.js"></script>
<!-- The ReactDOM Library -->
<script src="https://unpkg.com/[email protected]/dist/react-dom.js"></script>

We've also built a starter kit which might be useful if this is your first time using React. It includes a webpage with an example of using React with live code.

If you'd like to use bower, it's as easy as:

bower install --save react

And it's just as easy with npm:

npm i --save react

Contributing

The main purpose of this repository is to continue to evolve React core, making it faster and easier to use. If you're interested in helping with that, check out our contribution guide.

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.

Good First Bug

To help you get your feet wet and get you familiar with our contribution process, we have a list of good first bugs that contain bugs which are fairly easy to fix. 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.

Examples provided in this repository and in the documentation are separately licensed.

Troubleshooting

See the Troubleshooting Guide