react/README.md

80 lines
5.2 KiB
Markdown
Raw Normal View History

# [React](https://reactjs.org/) · [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/facebook/react/blob/master/LICENSE) [![npm version](https://img.shields.io/npm/v/react.svg?style=flat)](https://www.npmjs.com/package/react) [![Coverage Status](https://img.shields.io/coveralls/facebook/react/master.svg?style=flat)](https://coveralls.io/github/facebook/react?branch=master) [![CircleCI Status](https://circleci.com/gh/facebook/react.svg?style=shield&circle-token=:circle-token)](https://circleci.com/gh/facebook/react) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://reactjs.org/docs/how-to-contribute.html#your-first-pull-request)
2013-05-30 03:46:11 +08:00
React is a JavaScript library for building user interfaces.
* **Declarative:** React makes it painless to create interactive UIs. Design simple views for each state in your application, and React will efficiently update and render just the right components when your data changes. Declarative views make your code more predictable, simpler to understand, and easier to debug.
* **Component-Based:** Build encapsulated components that manage their own state, then compose them to make complex UIs. Since component logic is written in JavaScript instead of templates, you can easily pass rich data through your app and keep state out of the DOM.
* **Learn Once, Write Anywhere:** We don't make assumptions about the rest of your technology stack, so you can develop new features in React without rewriting existing code. React can also render on the server using Node and power mobile apps using [React Native](https://facebook.github.io/react-native/).
2015-03-29 01:33:15 +08:00
[Learn how to use React in your own project](https://reactjs.org/docs/getting-started.html).
2013-05-30 03:46:11 +08:00
## Documentation
You can find the React documentation [on the website](https://reactjs.org/docs).
2018-06-26 08:31:36 +08:00
Check out the [Getting Started](https://reactjs.org/docs/getting-started.html) page for a quick overview.
The documentation is divided into several sections:
* [Tutorial](https://reactjs.org/tutorial/tutorial.html)
* [Main Concepts](https://reactjs.org/docs/hello-world.html)
* [Advanced Guides](https://reactjs.org/docs/jsx-in-depth.html)
* [API Reference](https://reactjs.org/docs/react-api.html)
* [Where to Get Support](https://reactjs.org/community/support.html)
* [Contributing Guide](https://reactjs.org/docs/how-to-contribute.html)
You can improve it by sending pull requests to [this repository](https://github.com/reactjs/reactjs.org).
2013-05-30 03:46:11 +08:00
## Examples
We have several examples [on the website](https://reactjs.org/). Here is the first one to get you started:
2013-05-30 03:46:11 +08:00
```jsx
class HelloMessage extends React.Component {
render() {
return <div>Hello {this.props.name}</div>;
2013-05-30 03:46:11 +08:00
}
}
2013-05-30 03:46:11 +08:00
ReactDOM.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.
You'll notice that we used an HTML-like syntax; [we call it JSX](https://reactjs.org/docs/introducing-jsx.html). JSX is not required to use React, but it makes code more readable, and writing it feels like writing HTML. We recommend using [Babel](https://babeljs.io/) with a [React preset](https://babeljs.io/docs/plugins/preset-react/) to convert JSX into native JavaScript for browsers to digest.
2013-05-30 03:46:11 +08:00
## Installation
2018-06-26 08:31:36 +08:00
React is designed for gradual adoption, and **you can use as little or as much React as you need**.
2013-05-30 03:46:11 +08:00
2018-06-26 08:31:36 +08:00
Whether you want to get a taste of React, add some interactivity to a simple HTML page, or start a complex React-powered app, the links in this section will help you get started:
2013-05-30 03:46:11 +08:00
2018-06-26 19:17:02 +08:00
* [Online Playgrounds](https://reactjs.org/docs/getting-started.html#online-playgrounds)
2018-06-26 08:31:36 +08:00
* [Add React to a Website](https://reactjs.org/docs/add-react-to-a-website.html)
* [Create a New React App](https://reactjs.org/docs/create-a-new-react-app.html)
2016-02-13 15:20:52 +08:00
2018-06-26 08:31:36 +08:00
React is available as the `react` package on [npm](https://www.npmjs.com/). It is also available on a [CDN](https://reactjs.org/docs/cdn-links.html).
2016-02-13 15:20:52 +08:00
## Contributing
2013-05-30 03:46:11 +08:00
The main purpose of this repository is to continue to evolve React core, making it faster and easier to use. Development of React happens in the open on GitHub, and we are grateful to the community for contributing bugfixes and improvements. Read below to learn how you can take part in improving React.
2013-05-30 03:46:11 +08:00
### [Code of Conduct](https://code.facebook.com/codeofconduct)
2013-05-30 03:46:11 +08:00
Facebook has adopted a Code of Conduct that we expect project participants to adhere to. Please read [the full text](https://code.facebook.com/codeofconduct) so that you can understand what actions will and will not be tolerated.
2013-05-30 03:46:11 +08:00
### [Contributing Guide](https://reactjs.org/contributing/how-to-contribute.html)
Read our [contributing guide](https://reactjs.org/contributing/how-to-contribute.html) to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes to React.
### Good First Issues
To help you get your feet wet and get you familiar with our contribution process, we have a list of [good first issues](https://github.com/facebook/react/labels/good%20first%20issue) that contain bugs which have a relatively limited scope. This is a great place to get started.
2014-10-09 08:27:59 +08:00
### License
React is [MIT licensed](./LICENSE).