Go to file
Brandon Dail d04618b28b Run all fixtures through Prettier (#10157)
* Include fixtures in prettier default pattern

* Run all fixtures through Prettier
2017-07-12 11:19:24 -05:00
.github doc: switch the order of lint and prettier (#10094) 2017-07-02 13:24:45 +01:00
docs Tweak deprecation messages to be less scary (#10145) 2017-07-11 14:05:27 +01:00
eslint-rules Make nodeType into constant for readability and reuse (#9113) 2017-04-15 18:37:12 +01:00
fixtures Run all fixtures through Prettier (#10157) 2017-07-12 11:19:24 -05:00
flow Update to Flow 0.47 (#9815) 2017-06-01 12:17:21 -07:00
mocks Streamline Fiber/Stack testing and bundling setup a little bit (#9964) 2017-06-14 22:10:33 +01:00
packages Add react-dom-unstable-native-dependencies (#10138) 2017-07-12 02:27:26 +01:00
scripts Run all fixtures through Prettier (#10157) 2017-07-12 11:19:24 -05:00
src Add react-dom-unstable-native-dependencies (#10138) 2017-07-12 02:27:26 +01:00
.babelrc Convert current build system to Rollup and adopt flat bundles (#9327) 2017-04-05 16:47:29 +01:00
.editorconfig Add insert_final_newline to editorconfig 2015-09-03 13:43:42 -07:00
.eslintignore Add bench remote repo to eslintignore 2017-05-30 16:43:03 +01:00
.eslintrc.js Remove commented out code (#9795) 2017-06-05 09:59:18 -05:00
.flowconfig Update flow to 0.48 (#10006) 2017-06-19 11:45:36 -07:00
.gitattributes .gitattributes to ensure LF line endings when we should 2014-01-17 16:25:53 -08:00
.gitignore Excluding src/node_modules from .gitignore. (#10028) 2017-06-23 08:05:09 -07:00
.mailmap Update authors for v15 2016-04-04 09:46:23 -07:00
AUTHORS Update authors for v15 2016-04-04 09:46:23 -07:00
CHANGELOG.md Changelog for 15.6.1 (#9977) 2017-06-15 15:09:13 +01:00
CONTRIBUTING.md Move How to Contribute to documentation and update it (#7817) 2016-09-27 23:20:49 +01:00
LICENSE Year-agnostic copyright message, like React Native uses, to prevent the need for yearly changes. 2015-12-29 20:20:32 +01:00
LICENSE-docs Update licenses for docs and examples 2014-10-22 12:35:08 -07:00
LICENSE-examples Update licenses for docs and examples 2014-10-22 12:35:08 -07:00
PATENTS Update Patent Grant 2015-04-10 12:15:29 -07:00
README.md Remove Travis badge from readme (#10041) 2017-06-26 11:22:21 +01:00
circle.yml Don't build gh-pages branch on CircleCI (#9442) 2017-04-22 22:33:43 +01:00
package.json Add Node v8.x support to devEngines in package.json (#10129) 2017-07-09 20:24:33 +01:00
yarn.lock Update yarn.lock (#10046) 2017-06-27 10:41:54 -07:00

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.