Go to file
Dan Abramov 49d4381c67 Simplify Jest config a little bit (#11242)
* Inline getTestDocument into test cases

* Remove mention of mock file we do not use

* Remove unused configuration entries

* Move eslint-rules package into the scripts/ folder
2017-10-16 23:17:00 +01:00
.github Update JSFiddle templates for React 16 (#11040) 2017-10-02 14:11:29 -07:00
fixtures Use value on <select> instead of setting selected on <option> (#11206) 2017-10-16 07:46:24 -04:00
flow [RT] More predictable things (#11139) 2017-10-06 19:08:22 -07:00
flow-typed Add new docs website (#10896) 2017-09-28 10:18:04 -07:00
mocks Update license headers BSD+Patents -> MIT 2017-09-25 18:17:44 -07:00
packages React reconciler package (#10758) 2017-10-11 19:29:26 +01:00
scripts Simplify Jest config a little bit (#11242) 2017-10-16 23:17:00 +01:00
src Simplify Jest config a little bit (#11242) 2017-10-16 23:17:00 +01:00
.babelrc Compile spread to Object.assign calls (#10387) 2017-08-04 19:12:12 +01:00
.editorconfig Add insert_final_newline to editorconfig 2015-09-03 13:43:42 -07:00
.eslintignore Delete documentation and website source (#11137) 2017-10-06 10:18:05 -07:00
.eslintrc.js Remove commented out code (#9795) 2017-06-05 09:59:18 -05:00
.flowconfig Delete documentation and website source (#11137) 2017-10-06 10:18:05 -07:00
.gitattributes .gitattributes to ensure LF line endings when we should 2014-01-17 16:25:53 -08:00
.gitignore Delete documentation and website source (#11137) 2017-10-06 10:18:05 -07:00
.mailmap Update .mailmap 2017-09-06 16:58:21 -07:00
.netlify Add new docs website (#10896) 2017-09-28 10:18:04 -07:00
.nvmrc Add new docs website (#10896) 2017-09-28 10:18:04 -07:00
AUTHORS Update authors for v16 (#10861) 2017-09-27 10:24:16 +01:00
CHANGELOG.md Add to changelog 2017-10-11 19:08:25 +01:00
CONTRIBUTING.md [Gatsby] "https://facebook.github.io/react/" -> "https://reactjs.org/" (#10970) 2017-09-29 18:43:22 -07:00
LICENSE Change license and remove references to PATENTS 2017-09-25 18:17:44 -07:00
README.md Remove broken link from licence (#11176) 2017-10-10 16:57:00 +01:00
circle.yml Delete documentation and website source (#11137) 2017-10-06 10:18:05 -07:00
package.json Simplify Jest config a little bit (#11242) 2017-10-16 23:17:00 +01:00
yarn.lock Bump Jest version (#11241) 2017-10-16 21:38:34 +01: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 MIT licensed.