Go to file
Andrew Clark bc8bd24c14
Run persistent mode tests in CI (#15029)
* Add command to run tests in persistent mode

* Convert Suspense fuzz tester to use noop renderer

So we can run it in persistent mode, too.

* Don't mutate stateNode in appendAllChildren

We can't mutate the stateNode in appendAllChildren because the children
could be current.

This is a bit weird because now the child that we append is different
from the one on the fiber stateNode. I think this makes conceptual
sense, but I suspect this likely breaks an assumption in Fabric.

With this approach, we no longer need to clone to unhide the children,
so I removed those host config methods.

Fixes bug surfaced by fuzz tester. (The test case that failed was the
one that's already hard coded.)

* In persistent mode, disable test that reads a ref

Refs behave differently in persistent mode. I added a TODO to write
a persistent mode version of this test.

* Run persistent mode tests in CI

* test-persistent should skip files without noop

If a file doesn't reference react-noop-renderer, we shouldn't bother
running it in persistent mode, since the results will be identical to
the normal test run.

* Remove module constructor from placeholder tests

We don't need this now that we have the ability to run any test file in
either mutation or persistent mode.

* Revert "test-persistent should skip files without noop"

Seb objected to adding shelljs as a dep and I'm too lazy to worry about
Windows support so whatever I'll just revert this.

* Delete duplicate file
2019-03-11 10:56:34 -07:00
.circleci Publish a local release (canary or stable) to NPM (#14260) 2018-11-23 12:37:18 -08:00
.github Reword issue template 2018-01-03 15:58:07 +00:00
fixtures Fix tracing fixture (#14917) 2019-02-21 18:14:32 +00:00
packages Run persistent mode tests in CI (#15029) 2019-03-11 10:56:34 -07:00
scripts Run persistent mode tests in CI (#15029) 2019-03-11 10:56:34 -07:00
.babelrc Remove ES3-specific transforms (#12716) 2018-04-30 14:30:37 +01:00
.editorconfig Add insert_final_newline to editorconfig 2015-09-03 13:43:42 -07:00
.eslintignore Use Yarn Workspaces (#11252) 2017-10-19 00:22:21 +01:00
.eslintrc.js Refactor ESLint configuration to enable better IDE integration (#13914) 2018-11-08 17:56:35 +00:00
.gitattributes .gitattributes to ensure LF line endings when we should 2014-01-17 16:25:53 -08:00
.gitignore Remove 'flow-coverage-report' script. (#13395) 2018-08-14 19:21:57 +01:00
.mailmap Update .mailmap 2017-09-06 16:58:21 -07:00
.nvmrc Add new docs website (#10896) 2017-09-28 10:18:04 -07:00
.prettierrc.js Add `use strict` to .prettierrc.js (#13787) 2018-10-20 17:42:11 -04:00
.watchmanconfig Added a .watchmanconfig file (#11581) 2017-11-16 18:39:03 -08:00
AUTHORS Update authors for v16 (#10861) 2017-09-27 10:24:16 +01:00
CHANGELOG.md 16.8.4 and changelog 2019-03-05 15:17:42 -08:00
CODE_OF_CONDUCT.md Updated url to Code of Conduct page (#13126) 2018-06-29 13:27:24 +01:00
CONTRIBUTING.md [Gatsby] "https://facebook.github.io/react/" -> "https://reactjs.org/" (#10970) 2017-09-29 18:43:22 -07:00
LICENSE Drop the year from Facebook copyright headers and the LICENSE file. (#13593) 2018-09-07 15:11:23 -07:00
README.md use functional component as a first example in readme (#14819) 2019-02-11 14:41:37 +00:00
appveyor.yml add nodejs 10 to windows test (#13241) 2018-08-02 01:09:37 +01:00
dangerfile.js Dangerfile exits early if build failed (#14400) 2018-12-07 09:06:47 -08:00
netlify.toml add netlify toml file (#12350) 2018-05-20 21:03:51 +01:00
package.json Run persistent mode tests in CI (#15029) 2019-03-11 10:56:34 -07:00
yarn.lock Bump GCC (#14657) 2019-01-23 14:28:03 +00:00

README.md

React · GitHub license npm version Coverage Status 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.