Go to file
Ben Alpert 8e2dcceee3 Merge pull request #1597 from spicyj/defaultprops-autobind
Auto-bind before getDefaultProps
2014-06-11 10:14:31 -07:00
bin Move jsx_whitespace_transform 2014-02-13 15:58:19 -08:00
docs Merge pull request #1631 from dblandin/master 2014-06-10 13:53:37 -07:00
examples Ignore built todomvc-flux bundles 2014-05-26 20:27:48 -07:00
grunt Remove grunt-complexity 2014-04-16 11:52:25 -07:00
jest Add configuration for running tests with Jest 2014-05-19 16:58:33 -07:00
lib/react Initial public release 2013-05-29 12:54:02 -07:00
npm-react Move envify from peerDependencies to dependencies 2014-05-05 20:26:23 -03:00
perf Fix perf suite broken by descriptor change 2014-04-25 10:38:17 -07:00
scripts AUTHORS 2013-09-09 23:42:54 -07:00
src Merge pull request #1597 from spicyj/defaultprops-autobind 2014-06-11 10:14:31 -07:00
starter Initial public release 2013-05-29 12:54:02 -07:00
test benchmark runner 2014-01-06 12:26:40 -05:00
vendor Merge pull request #1583 from nhunzaker/jsxtransform-parallel 2014-05-27 14:31:25 -07:00
.editorconfig Don't forcibly wrap lines in git commit messages 2014-04-06 23:17:51 -07:00
.gitattributes .gitattributes to ensure LF line endings when we should 2014-01-17 16:25:53 -08:00
.gitignore Simple HTML to JSX converter, built during Hackathon 40 at Facebook. 2013-12-21 17:44:38 -08:00
.jshintrc Cleanup lint warnings from recent testing changes 2013-11-14 11:24:06 -08:00
.mailmap Update mailmap post 0.10 (see #1283) 2014-04-01 09:30:08 -07:00
.travis.yml Don't fail Travis on sauce failures 2014-05-19 13:23:07 -07:00
AUTHORS Update AUTHORS for 0.10 2014-03-21 13:21:20 -07:00
CHANGELOG.md 0.10 release materials 2014-03-21 14:57:03 -07:00
CONTRIBUTING.md Update CONTRIBUTING.md 2014-03-27 23:57:32 -07:00
Gruntfile.js Don't fail Travis on sauce failures 2014-05-19 13:23:07 -07:00
LICENSE Revert "Update LICENSE" 2013-07-15 10:40:27 -07:00
README.md Remove references to autoflow 2014-05-17 15:15:26 -07:00
main.js Add support for {harmony: true} to react-tools 2014-03-16 15:38:40 -07:00
package.json Bump esprima-fb and jstransform versions 2014-05-22 20:16:37 -07:00
react-source.gemspec Make sure react-with-addons ends up in react-source gem 2013-10-08 16:49:11 -07:00

README.md

React Build Status

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 uses a virtual DOM diff implementation for ultra-high performance. It can also render on the server using Node.js — no heavy browser DOM required.
  • Data flow: React implements one-way reactive data flow which reduces boilerplate and is easier to reason about than traditional data binding.

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:

/** @jsx React.DOM */
var HelloMessage = React.createClass({
  render: function() {
    return <div>Hello {this.props.name}</div>;
  }
});

React.renderComponent(
  <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):

<!-- The core React library -->
<script src="http://fb.me/react-0.10.0.js"></script>
<!-- In-browser JSX transformer, remove when pre-compiling JSX. -->
<script src="http://fb.me/JSXTransformer-0.10.0.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).
  • 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
# For speed, you can use fasttest and add --filter to only run one test
grunt fasttest --filter=ReactIdentity
# Lint the code with JSHint
grunt lint
# Wipe out build directory
grunt clean

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.