Go to file
Paul O’Shannessy 848a8e1180 Remove animation "example"
It was never a real example and shouldn't have been checked in.
2013-09-25 11:08:24 -07:00
bin Simplify bin/jsx to perform just the JSX transform. 2013-09-06 16:20:25 -04:00
docs Fix 404s to non-existent API docs 2013-09-24 16:00:52 -07:00
examples Remove animation "example" 2013-09-25 11:08:24 -07:00
grunt Delete version.js 2013-09-11 14:20:26 -07: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 ReactLink: two-way binding for React 2013-09-24 12:14:25 -07:00
starter Initial public release 2013-05-29 12:54:02 -07:00
test Rename removeSiblings to removeNextSiblings. 2013-07-19 14:18:44 -04:00
vendor Merge pull request #336 from spicyj/jsx-spacing 2013-09-20 10:59:21 -07:00
.editorconfig Initial public release 2013-05-29 12:54:02 -07:00
.gitignore Merge pull request #178 from paulshen/master 2013-07-08 18:27:39 -07:00
.jshintrc Initial public release 2013-05-29 12:54:02 -07:00
.mailmap AUTHORS 2013-09-09 23:42:54 -07:00
.travis.yml Send branch info from travis for continuous builds 2013-07-26 14:28:33 -07:00
AUTHORS AUTHORS 2013-09-09 23:42:54 -07:00
CHANGELOG.md Updated Changelog for 0.4.1 2013-07-26 15:56:22 -07:00
CONTRIBUTING.md Update CONTRIBUTING.md 2013-05-29 14:52:42 -06:00
Gruntfile.js Use a regular expression to parse out React.version. 2013-09-11 18:41:56 -04:00
LICENSE Revert "Update LICENSE" 2013-07-15 10:40:27 -07:00
README.md Add CDNJS to docs. Fixes #244 2013-08-22 11:07:50 -07:00
main.js Move to using `jstransform` and `esprima-fb` npm modules 2013-08-22 15:28:41 -07:00
package.json Make constant propagation smarter about pruning if statements. 2013-09-18 13:33:45 -04:00
react-source.gemspec Use the right home page for react-source gem 2013-07-23 10:55:41 -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 XML-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.4.1.min.js"></script>
<!-- In-browser JSX transformer, remove when pre-compiling JSX. -->
<script src="http://fb.me/JSXTransformer-0.4.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.