react/README.md

106 lines
4.3 KiB
Markdown
Raw Normal View History

2014-10-29 02:20:33 +08:00
# [React](http://facebook.github.io/react) [![Build Status](https://travis-ci.org/facebook/react.svg?branch=master)](https://travis-ci.org/facebook/react)
2013-05-30 03:46:11 +08:00
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.
2013-05-30 03:46:11 +08:00
2013-05-30 04:51:49 +08:00
[Learn how to use React in your own project.](http://facebook.github.io/react/docs/getting-started.html)
2013-05-30 03:46:11 +08:00
## Examples
We have several examples [on the website](http://facebook.github.io/react/). Here is the first one to get you started:
2013-05-30 03:46:11 +08:00
```js
var HelloMessage = React.createClass({
render: function() {
return <div>Hello {this.props.name}</div>;
2013-05-30 03:46:11 +08:00
}
});
React.render(
2013-05-30 03:46:11 +08:00
<HelloMessage name="John" />,
document.getElementById('container')
);
```
This example will render "Hello John" into a container on the page.
2013-11-06 11:22:47 +08:00
You'll notice that we used an HTML-like syntax; [we call it JSX](http://facebook.github.io/react/docs/jsx-in-depth.html). 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.
2013-05-30 03:46:11 +08:00
## Installation
The fastest way to get started is to serve JavaScript from the CDN (also available on [cdnjs](https://cdnjs.com/libraries/react) and [jsdelivr](http://www.jsdelivr.com/#!react)):
2013-05-30 03:46:11 +08:00
```html
<!-- The core React library -->
2015-03-17 07:41:33 +08:00
<script src="http://fb.me/react-0.13.1.js"></script>
2013-05-30 03:46:11 +08:00
<!-- In-browser JSX transformer, remove when pre-compiling JSX. -->
2015-03-17 07:41:33 +08:00
<script src="http://fb.me/JSXTransformer-0.13.1.js"></script>
2013-05-30 03:46:11 +08:00
```
2015-03-17 07:41:33 +08:00
We've also built a [starter kit](http://facebook.github.io/react/downloads/react-0.13.1.zip) 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.
2013-05-30 03:46:11 +08:00
If you'd like to use [bower](http://bower.io), it's as easy as:
```sh
2013-05-31 02:49:57 +08:00
bower install --save react
2013-05-30 03:46:11 +08:00
```
## 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.
2013-05-30 03:46:11 +08:00
### 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.
```sh
# 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:
```sh
# Build and run tests with PhantomJS
2013-05-30 03:46:11 +08:00
grunt test
2014-03-07 14:11:25 +08:00
# Build and run tests in your browser
grunt test --debug
2014-04-15 05:27:23 +08:00
# For speed, you can use fasttest and add --filter to only run one test
grunt fasttest --filter=ReactIdentity
2015-02-13 04:48:11 +08:00
# Lint the code with ESLint
2013-05-30 03:46:11 +08:00
grunt lint
# Wipe out build directory
grunt clean
```
2014-10-09 08:27:59 +08:00
### License
React is [BSD licensed](./LICENSE). We also provide an additional [patent grant](./PATENTS).
React documentation is [Creative Commons licensed](./LICENSE-docs).
Examples provided in this repository and in the documentation are [separately licensed](./LICENSE-examples).
2013-05-30 03:46:11 +08:00
### 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](CONTRIBUTING.md).