Go to file
Thomas Aylott 694cd6e9e8 test runner requires es5-shim 2013-11-06 15:30:50 -05:00
bin Simplify bin/jsx to perform just the JSX transform. 2013-09-06 16:20:25 -04:00
build include the built files for testling 2013-11-06 15:30:49 -05:00
docs add docs lowercase mention for data- and aria- 2013-11-05 21:02:06 -05:00
examples remove examples/wrapup 2013-11-03 15:41:40 -05:00
grunt test server middleware for receiving test results 2013-11-06 15:30:50 -05:00
lib/react Initial public release 2013-05-29 12:54:02 -07:00
scripts AUTHORS 2013-09-09 23:42:54 -07:00
src skip Worker test unless the browser supports them 2013-11-06 15:30:49 -05:00
starter Initial public release 2013-05-29 12:54:02 -07:00
test SauceLabs Browser testing via Travis 2013-11-06 15:30:50 -05:00
vendor Upgrade to the latest version of jasmine 2013-11-06 15:30:50 -05:00
.editorconfig Initial public release 2013-05-29 12:54:02 -07:00
.gitignore Testing-ci can't handle spaces in filenames? 2013-11-06 15:30:49 -05:00
.jshintrc Initial public release 2013-05-29 12:54:02 -07:00
.mailmap Updated AUTHORS for 0.5 2013-10-15 15:01:14 -07:00
.travis.yml Correct SauceLabs tokens 2013-11-06 15:30:50 -05:00
AUTHORS Update everything for v0.5.1 2013-10-29 13:15:33 -07:00
CHANGELOG.md Update everything for v0.5.1 2013-10-29 13:15:33 -07:00
CONTRIBUTING.md Update CONTRIBUTING.md 2013-05-29 14:52:42 -06:00
Gruntfile.js test server middleware for receiving test results 2013-11-06 15:30:50 -05:00
LICENSE Revert "Update LICENSE" 2013-07-15 10:40:27 -07:00
README.md XML->HTML, because people are fickle. 2013-11-05 19:22:47 -08:00
main.js Move to using `jstransform` and `esprima-fb` npm modules 2013-08-22 15:28:41 -07:00
package.json test runner requires es5-shim 2013-11-06 15:30:50 -05: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.

  • Declarative: React uses a declarative paradigm that makes it easier to reason about your application.
  • Efficient: React computes the minimal set of changes necessary to keep your DOM up-to-date.
  • Flexible: React works with the libraries and frameworks that you already know.

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.5.1.js"></script>
<!-- In-browser JSX transformer, remove when pre-compiling JSX. -->
<script src="http://fb.me/JSXTransformer-0.5.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

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:

# Create test build & run tests with PhantomJS
grunt test
# Lint the core library code with JSHint
grunt lint
# Lint package code
grunt lint:package
# 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.