The Wayback Machine - https://web.archive.org/web/20200131165153/https://github.com/facebook/react
Skip to content
A declarative, efficient, and flexible JavaScript library for building user interfaces.
JavaScript HTML CSS C++ TypeScript CoffeeScript Other
Branch: master
Clone or download
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
Image .circleci Build and store DevTools artifacts in Circle CI (#17746) Jan 1, 2020
Image .codesandbox Add CodeSandbox CI Config (#17175) Oct 31, 2019
Image .github Fix issue template for questions (#17817) Jan 10, 2020
Image fixtures Fix Jest diff call (#17921) Jan 29, 2020
Image packages StrictMode should call sCU twice in DEV (#17942) Jan 30, 2020
Image scripts Add a note about expiring OTP codes Jan 29, 2020
Image .editorconfig Add insert_final_newline to editorconfig Sep 3, 2015
Image .eslintignore Import React DevTools v4 Aug 28, 2019
Image .eslintrc.js Update babel-eslint and eslint packages (#17829) Jan 14, 2020
Image .gitattributes .gitattributes to ensure LF line endings when we should Jan 18, 2014
Image .gitignore Import React DevTools v4 Aug 28, 2019
Image .mailmap Update .mailmap (#17177) Oct 28, 2019
Image .nvmrc chore: Update nvmrc with latest lts (#16610) Aug 29, 2019
Image .prettierignore Import React DevTools v4 Aug 28, 2019
Image .prettierrc.js Bump Prettier (#17811) Jan 9, 2020
Image .watchmanconfig .watchmanconfig must be valid json (#16118) Jul 12, 2019
Image AUTHORS Update authors for v16 (#10861) Sep 27, 2017
Image CHANGELOG.md Fixed changelog formatting #17481 (#17487) Nov 29, 2019
Image CODE_OF_CONDUCT.md Adopt Contributor Covenant (#16613) Aug 29, 2019
Image CONTRIBUTING.md [Gatsby] "https://facebook.github.io/react/" -> "https://reactjs.org/" ( Sep 30, 2017
Image LICENSE Drop the year from Facebook copyright headers and the LICENSE file. (#… Sep 7, 2018
Image README.md Remove coverage badge from README (#15216) Mar 26, 2019
Image SECURITY.md Create SECURITY.md (#15784) Jan 9, 2020
Image appveyor.yml add nodejs 10 to windows test (#13241) Aug 2, 2018
Image babel.config.js Babel 7 (#16297) Aug 9, 2019
Image dangerfile.js Separate sizebot for experimental builds (#17100) Oct 16, 2019
Image netlify.toml add netlify toml file (#12350) May 20, 2018
Image package.json Update google-closure-compiler (#17902) Jan 31, 2020
Image yarn.lock Update google-closure-compiler (#17902) Jan 31, 2020

README.md

React · GitHub license npm version CircleCI Status PRs Welcome

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.

Learn how to use React in your own project.

Installation

React has been designed for gradual adoption from the start, and you can use as little or as much React as you need:

You can use React as a <script> tag from a CDN, or as a react package on npm.

Documentation

You can find the React documentation on the website.

Check out the Getting Started page for a quick overview.

The documentation is divided into several sections:

You can improve it by sending pull requests to this repository.

Examples

We have several examples on the website. Here is the first one to get you started:

function HelloMessage({ name }) {
  return <div>Hello {name}</div>;
}

ReactDOM.render(
  <HelloMessage name="Taylor" />,
  document.getElementById('container')
);

This example will render "Hello Taylor" 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. If you're using React as a <script> tag, read this section on integrating JSX; otherwise, the recommended JavaScript toolchains handle it automatically.

Contributing

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.

Code of Conduct

Facebook has adopted a Code of Conduct that we expect project participants to adhere to. Please read the full text so that you can understand what actions will and will not be tolerated.

Contributing Guide

Read our contributing guide 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 that contain bugs which have a relatively limited scope. This is a great place to get started.

License

React is MIT licensed.

You can’t perform that action at this time.