Go to file
Paul O’Shannessy 06f538a61e Changelog for 15.0.2
(cherry picked from commit a157791264)
2016-05-02 10:15:45 -07:00
docs Create 01-why-react.ru-RU.md (#6659) 2016-04-30 07:43:25 -07:00
eslint-rules Year-agnostic copyright message, like React Native uses, to prevent the need for yearly changes. 2015-12-29 20:20:32 +01:00
examples Update examples for v15 2016-03-29 11:00:48 -07:00
grunt Add new ReactPerf 2016-04-28 20:45:57 +01:00
mocks Year-agnostic copyright message, like React Native uses, to prevent the need for yearly changes. 2015-12-29 20:20:32 +01:00
packages Clean up package.json after #6338 2016-04-20 10:29:39 -07:00
scripts Make React.__spread warn 2016-04-07 17:30:23 -07:00
src Add links to docs for addons and top level API (#6555) 2016-05-02 06:14:28 -07:00
starter Fix file reference typo in starter 2015-11-29 18:07:31 -08:00
vendor Add semicolon for react-dom source files. 2016-01-20 13:35:03 -08:00
.babelrc Add Object Spread Support to Our Babel Config 2016-04-20 03:35:30 +01:00
.editorconfig Add insert_final_newline to editorconfig 2015-09-03 13:43:42 -07:00
.eslintignore Fix lint 2016-02-05 10:56:51 -08:00
.eslintrc.js Update lint config, dependencies, fix issues 2016-03-03 10:16:02 -08:00
.gitattributes .gitattributes to ensure LF line endings when we should 2014-01-17 16:25:53 -08:00
.gitignore update zh-docs (v0.14.3+) 2015-12-24 13:57:07 +08:00
.mailmap Update authors for v15 2016-04-04 09:46:23 -07:00
.travis.yml Try enabling coverage again 2016-04-26 13:21:41 +01:00
AUTHORS Update authors for v15 2016-04-04 09:46:23 -07:00
CHANGELOG.md Changelog for 15.0.2 2016-05-02 10:15:45 -07:00
CONTRIBUTING.md Link to the meeting notes 2016-04-01 17:58:55 +01:00
Gruntfile.js Ensure react-native-renderer package gets copied 2016-04-20 03:35:31 +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 Update changelog & readme for 15.0.1 2016-04-08 14:39:03 -07:00
gulpfile.js Get rid of transformMatrix/decomposeMatrix special case (#6660) 2016-04-29 15:57:12 -07:00
package.json package(node-engine-version): accept 6.x versions (#6645) 2016-04-28 11:33:26 -07:00

README.md

React Build Status Coverage Status npm version PRs Welcome

React is a JavaScript library for building user interfaces.

  • Just the UI: Lots of people use React as the V in MVC. Since React makes no assumptions about the rest of your technology stack, it's easy to try it out on a small feature in an existing project.
  • Virtual DOM: React abstracts away the DOM from you, giving a simpler programming model and better performance. React can also render on the server using Node, and it can power native apps using React Native.
  • Data flow: React implements one-way reactive data flow which reduces boilerplate and is easier to reason about than traditional data binding.

NEW! Check out our newest project React Native, which uses React and JavaScript to create native mobile apps.

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:

var HelloMessage = React.createClass({
  render: function() {
    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 the CDN (also available on cdnjs and jsdelivr):

<!-- The core React library -->
<script src="https://fb.me/react-15.0.1.js"></script>
<!-- The ReactDOM Library -->
<script src="https://fb.me/react-dom-15.0.1.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

Contribute

The main purpose of this repository is to continue to evolve React core, making it faster and easier to use. If you're interested in helping with that, then keep reading. If you're not interested in helping right now that's ok too. :) Any feedback you have about using React would be greatly appreciated.

Building Your Copy of React

The process to build react.js is built entirely on top of node.js, using many libraries you may already be familiar with.

Prerequisites

  • You have node installed at v4.0.0+ and npm at v2.0.0+.
  • You are familiar with npm and know whether or not you need to use sudo when installing packages globally.
  • You are familiar with git.

Build

Once you have the repository cloned, building a copy of react.js is really easy.

# grunt-cli is needed by grunt; you might have this installed already
npm install -g grunt-cli
npm install
grunt build

At this point, you should now have a build/ directory populated with everything you need to use React. The examples should all work.

Grunt

We use grunt to automate many tasks. Run grunt -h to see a mostly complete listing. The important ones to know:

# Build and run tests with PhantomJS
grunt test
# Lint the code with ESLint
grunt lint
# Wipe out build directory
grunt clean

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.

More…

There's only so much we can cram in here. To read more about the community and guidelines for submitting pull requests, please read the Contributing document.

Troubleshooting

See the Troubleshooting Guide