A declarative, efficient, and flexible JavaScript library for building user interfaces. reactjs.org
Go to file
Dan Abramov 894d20744c 0.14.9
2017-04-12 16:40:34 +01:00
bin Move react-tools from root. 2015-07-30 10:15:36 -07:00
docs Merge pull request #6330 from speedskater/patch-1 2016-03-29 14:31:59 -07:00
eslint-rules Upgrade ESLint, fix code 2015-08-10 17:04:29 -07:00
examples Merge pull request #5387 from MattijsKneppers/master 2016-01-28 10:55:18 -08:00
grunt Merge pull request #5501 from zpao/release-react-dom-server 2015-11-18 13:18:26 -08:00
packages 0.14.9 2017-04-12 16:40:34 +01:00
scripts Enforce NODE_ENV=test 2015-09-30 17:43:06 -07:00
src 0.14.9 2017-04-12 16:40:34 +01:00
starter Merge pull request #5564 from jackiewung/master 2015-12-29 13:51:43 -08:00
vendor Merge pull request #5891 from zpao/vendor-semi 2016-01-28 10:55:12 -08:00
.editorconfig Add insert_final_newline to editorconfig 2015-09-03 13:43:42 -07:00
.eslintignore Merge pull request #5496 from zpao/reactdomserverfollowup 2015-11-18 13:18:26 -08:00
.eslintrc Upgrade eslint to 1.4.1 2015-09-16 12:16:46 -07:00
.gitattributes .gitattributes to ensure LF line endings when we should 2014-01-17 16:25:53 -08:00
.gitignore Merge pull request #5724 from iamchenxin/docs122315 2016-01-28 09:53:58 -08:00
.mailmap Update AUTHORS for 0.14 2015-10-07 09:49:10 -07:00
.travis.yml Use babel 5 bin, not cached babel 6 cli 2016-03-21 19:14:14 -07:00
AUTHORS Update AUTHORS for 0.14 2015-10-07 09:49:10 -07:00
CHANGELOG.md Update README and CHANGELOG for 0.14.8 2016-03-29 16:45:33 +01:00
CONTRIBUTING.md Explicitly call out code of conduct in CONTRIBUTING 2015-07-28 13:49:00 -07:00
Gruntfile.js Merge pull request #5501 from zpao/release-react-dom-server 2015-11-18 13:18:26 -08:00
gulpfile.js Upgrade to fbjs, fbjs-scripts @ 0.2 2015-08-31 17:19:42 -07:00
LICENSE Fix Outdated Copyright Year 2015-01-05 13:52:20 -05: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
npm-shrinkwrap.json Upgrade to fbjs@^0.6.1 2016-01-06 15:21:05 -08:00
package.json 0.14.9 2017-04-12 16:40:34 +01:00
PATENTS Update Patent Grant 2015-04-10 12:15:29 -07:00
README.md Update README and CHANGELOG for 0.14.8 2016-03-29 16:45:33 +01:00

React Build Status npm version

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

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 v0.10.0+ (it might work at lower versions, we just haven't tested) 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
# Build and run tests in your browser
grunt test --debug
# Lint the code with ESLint
grunt lint
# Wipe out build directory
grunt clean

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