A declarative, efficient, and flexible JavaScript library for building user interfaces.
JavaScript C++ TypeScript CoffeeScript Python C Other
Latest commit 3baa47c Dec 25, 2016 @ericpitcher ericpitcher committed with gaearon Update conditional-rendering.md (#8636)
Stating the fact that component lifecycle methods will still fire as normal even though you return null from the render method.
Permalink
Failed to load latest commit information.
.github use npm-run-script in PULL_REQUEST_TEMPLATE (#7913) Oct 7, 2016
docs Update conditional-rendering.md (#8636) Dec 24, 2016
eslint-rules Year-agnostic copyright message, like React Native uses, to prevent t… Dec 29, 2015
examples Don't rely on commit phase effect to clear updates Dec 15, 2016
flow Added new fiber-based renderer for native dubbed ReactNativeFiber Dec 15, 2016
grunt Add circle.yml / CircleCI support (#8486) Dec 2, 2016
gulp/tasks #8021 (#8241) Nov 9, 2016
mocks Year-agnostic copyright message, like React Native uses, to prevent t… Dec 29, 2015
packages add dependencies to react-test-renderer and react-addons (#8467) Dec 1, 2016
scripts Fiber: Fix reentrant mounting in synchronous mode (#8623) Dec 22, 2016
src Don't call sCU with null props (#8633) Dec 22, 2016
starter Fix file reference typo in starter Nov 30, 2015
.babelrc Add babel-plugin-transform-class-properties (#7322) Jul 21, 2016
.editorconfig Add insert_final_newline to editorconfig Sep 3, 2015
.eslintignore Add (failing) React ART tests May 24, 2016
.eslintrc.js Upgrade ESLint and dependencies, fix new lint errors, switch Travis t… Nov 17, 2016
.flowconfig Update Flow to 0.37.0 (#8608) Dec 20, 2016
.gitattributes .gitattributes to ensure LF line endings when we should Jan 18, 2014
.gitignore New Documentation Oct 21, 2016
.mailmap Update authors for v15 Apr 4, 2016
.travis.yml Update Travis config for new token Dec 1, 2016
AUTHORS Update authors for v15 Apr 4, 2016
CHANGELOG.md Update CHANGELOG.md (#8518) Dec 8, 2016
CONTRIBUTING.md Move How to Contribute to documentation and update it (#7817) Sep 27, 2016
Gruntfile.js Add Fiber Debugger (#8033) Oct 25, 2016
LICENSE Year-agnostic copyright message, like React Native uses, to prevent t… Dec 29, 2015
LICENSE-docs Update licenses for docs and examples Oct 22, 2014
LICENSE-examples Update licenses for docs and examples Oct 22, 2014
PATENTS Update Patent Grant Apr 10, 2015
README.md Add CircleCI badge to the Readme Dec 3, 2016
circle.yml Support parallelism on Circle (#8511) Dec 7, 2016
gulpfile.js Renamed InitializeJavaScriptAppEngine to InitializeCore Dec 12, 2016
package.json Update to Jest 18 (#8621) Dec 22, 2016
yarn.lock Update to Jest 18 (#8621) Dec 22, 2016

README.md

React · CircleCI Status 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. 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 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