# [React](https://reactjs.org/) · [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/facebook/react/blob/master/LICENSE) [![npm version](https://img.shields.io/npm/v/react.svg?style=flat)](https://www.npmjs.com/package/react) [![Coverage Status](https://img.shields.io/coveralls/facebook/react/master.svg?style=flat)](https://coveralls.io/github/facebook/react?branch=master) [![CircleCI Status](https://circleci.com/gh/facebook/react.svg?style=shield&circle-token=:circle-token)](https://circleci.com/gh/facebook/react) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://reactjs.org/docs/how-to-contribute.html#your-first-pull-request) 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](https://facebook.github.io/react-native/). [Learn how to use React in your own project](https://reactjs.org/docs/getting-started.html). ## Documentation You can find the React documentation [on the website](https://reactjs.org/docs). It is divided into several sections: * [Quick Start](https://reactjs.org/docs/hello-world.html) * [Advanced Guides](https://reactjs.org/docs/jsx-in-depth.html) * [API Reference](https://reactjs.org/docs/react-api.html) * [Tutorial](https://reactjs.org/tutorial/tutorial.html) * [Where to Get Support](https://reactjs.org/community/support.html) * [Contributing Guide](https://reactjs.org/docs/how-to-contribute.html) You can improve it by sending pull requests to [this repository](https://github.com/reactjs/reactjs.org). ## Examples We have several examples [on the website](https://reactjs.org/). Here is the first one to get you started: ```jsx class HelloMessage extends React.Component { render() { return
Hello {this.props.name}
; } } ReactDOM.render( , 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](https://reactjs.org/docs/introducing-jsx.html). JSX is not required to use React, but it makes code more readable, and writing it feels like writing HTML. We recommend using [Babel](https://babeljs.io/) with a [React preset](https://babeljs.io/docs/plugins/preset-react/) to convert JSX into native JavaScript for browsers to digest. ## Installation React is available as the `react` package on [npm](https://www.npmjs.com/). It is also available on a [CDN](https://reactjs.org/docs/cdn-links.html). 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: * [Trying Out React](https://reactjs.org/docs/try-react.html) * [Creating a New Application](https://reactjs.org/docs/add-react-to-a-new-app.html) * [Adding React to an Existing Application](https://reactjs.org/docs/add-react-to-an-existing-app.html) ## 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](https://code.facebook.com/codeofconduct) Facebook has adopted a Code of Conduct that we expect project participants to adhere to. Please read [the full text](https://code.facebook.com/codeofconduct) so that you can understand what actions will and will not be tolerated. ### [Contributing Guide](https://reactjs.org/contributing/how-to-contribute.html) Read our [contributing guide](https://reactjs.org/contributing/how-to-contribute.html) 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](https://github.com/facebook/react/labels/good%20first%20issue) that contain bugs which have a relatively limited scope. This is a great place to get started. ### License React is [MIT licensed](./LICENSE). [//]: # (20180810YFaxYE39D6Ko6MDe6VuyIB006rlsxqgVEQW81PwRMQo=)