A declarative, efficient, and flexible JavaScript library for building user interfaces.
JavaScript C++ HTML TypeScript CoffeeScript C Other
Switch branches/tags
Latest commit 34780da Aug 23, 2017 @aweary aweary committed with gaearon Warn early for non-functional event listeners (#10453)
* Add early warning for non-functional event listeners

* Use functional listeners in ReactDOMComponent test

To avoid triggering the non-functional event listener component

* spy on console.error in non-function EventPluginHub test

This should warn from ReactDOMFiberComponent, but we just ignore it here

* Remove redundant check for listener

* Add expectation for non-functional listener warning in EventPluginHub

* Hoist listener typeof check in hot paths

* Include stack addendum in non-functional listener warning

* Make it pretty

* Remove it.onnly from ReactDOMFiber test

* Fix message

* Update expected message

* Change invariant message to match the new style

* Fix remaining warning
Permalink
Failed to load latest commit information.
.github Remove record-tests step from contribution guides (#10223) Jul 20, 2017
docs Add ReactFoo 2017 to list of upcoming conferences (#10467) Aug 16, 2017
eslint-rules Make nodeType into constant for readability and reuse (#9113) Apr 15, 2017
fixtures Use the virtual target for change events to avoid restoring controlle… Aug 12, 2017
flow Update to Flow 0.47 (#9815) Jun 1, 2017
mocks Streamline Fiber/Stack testing and bundling setup a little bit (#9964) Jun 14, 2017
packages Throw error to warn of mistaken loading of prod + dev React bundles (#… Aug 16, 2017
scripts Removed ReactNativeFeatureFlag shim from RN bundle (#10472) Aug 18, 2017
src Warn early for non-functional event listeners (#10453) Aug 23, 2017
.babelrc Compile spread to Object.assign calls (#10387) Aug 4, 2017
.editorconfig Add insert_final_newline to editorconfig Sep 3, 2015
.eslintignore Add bench remote repo to eslintignore May 30, 2017
.eslintrc.js Remove commented out code (#9795) Jun 5, 2017
.flowconfig Update Flow to 0.52 (#10417) Aug 9, 2017
.gitattributes .gitattributes to ensure LF line endings when we should Jan 18, 2014
.gitignore Excluding src/node_modules from .gitignore. (#10028) Jun 23, 2017
.mailmap Update authors for v15 Apr 4, 2016
AUTHORS Update authors for v15 Apr 4, 2016
CHANGELOG.md Changelog for 15.6.1 (#9977) Jun 15, 2017
CONTRIBUTING.md Move How to Contribute to documentation and update it (#7817) Sep 27, 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 Remove Travis badge from readme (#10041) Jun 26, 2017
circle.yml Don't build gh-pages branch on CircleCI (#9442) Apr 22, 2017
package.json Use Closure Compiler for UMD/Node bundles instead of Uglify (#10236) Aug 10, 2017
yarn.lock Update version on dom fixtures (#10445) Aug 12, 2017

README.md

React · CircleCI 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. We recommend using Babel with a React preset to convert JSX into native JavaScript for browsers to digest.

Installation

React is available as the react package on npm. It is also available on a CDN.

React is flexible and can be used in a variety of projects. You can create new apps with it, but you can also gradually introduce it into an existing codebase without doing a rewrite.

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

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.

Beginner Friendly Bugs

To help you get your feet wet and get you familiar with our contribution process, we have a list of beginner friendly 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.