You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
4.6 KiB
89 lines
4.6 KiB
8 years ago
|
---
|
||
7 years ago
|
id: add-react-to-an-existing-app
|
||
|
title: Add React to an Existing Application
|
||
|
permalink: docs/add-react-to-an-existing-app.html
|
||
|
prev: add-react-to-a-new-app.html
|
||
|
next: cdn-links.html
|
||
8 years ago
|
---
|
||
|
|
||
8 years ago
|
You don't need to rewrite your app to start using React.
|
||
8 years ago
|
|
||
8 years ago
|
We recommend adding React to a small part of your application, such as an individual widget, so you can see if it works well for your use case.
|
||
8 years ago
|
|
||
7 years ago
|
While React [can be used](/docs/react-without-es6.html) without a build pipeline, we recommend setting it up so you can be more productive. A modern build pipeline typically consists of:
|
||
8 years ago
|
|
||
|
* A **package manager**, such as [Yarn](https://yarnpkg.com/) or [npm](https://www.npmjs.com/). It lets you take advantage of a vast ecosystem of third-party packages, and easily install or update them.
|
||
8 years ago
|
* A **bundler**, such as [webpack](https://webpack.js.org/) or [Browserify](http://browserify.org/). It lets you write modular code and bundle it together into small packages to optimize load time.
|
||
8 years ago
|
* A **compiler** such as [Babel](http://babeljs.io/). It lets you write modern JavaScript code that still works in older browsers.
|
||
|
|
||
|
### Installing React
|
||
|
|
||
8 years ago
|
>**Note:**
|
||
|
>
|
||
7 years ago
|
>Once installed, we strongly recommend setting up a [production build process](/docs/optimizing-performance.html#use-the-production-build) to ensure you're using the fast version of React in production.
|
||
8 years ago
|
|
||
8 years ago
|
We recommend using [Yarn](https://yarnpkg.com/) or [npm](https://www.npmjs.com/) for managing front-end dependencies. If you're new to package managers, the [Yarn documentation](https://yarnpkg.com/en/docs/getting-started) is a good place to get started.
|
||
8 years ago
|
|
||
|
To install React with Yarn, run:
|
||
|
|
||
|
```bash
|
||
8 years ago
|
yarn init
|
||
8 years ago
|
yarn add react react-dom
|
||
|
```
|
||
|
|
||
|
To install React with npm, run:
|
||
8 years ago
|
|
||
|
```bash
|
||
8 years ago
|
npm init
|
||
8 years ago
|
npm install --save react react-dom
|
||
|
```
|
||
|
|
||
8 years ago
|
Both Yarn and npm download packages from the [npm registry](http://npmjs.com/).
|
||
8 years ago
|
|
||
|
### Enabling ES6 and JSX
|
||
|
|
||
|
We recommend using React with [Babel](http://babeljs.io/) to let you use ES6 and JSX in your JavaScript code. ES6 is a set of modern JavaScript features that make development easier, and JSX is an extension to the JavaScript language that works nicely with React.
|
||
|
|
||
7 years ago
|
The [Babel setup instructions](https://babeljs.io/docs/setup/) explain how to configure Babel in many different build environments. Make sure you install [`babel-preset-react`](http://babeljs.io/docs/plugins/preset-react/#basic-setup-with-the-cli-) and [`babel-preset-env`](http://babeljs.io/docs/plugins/preset-env/) and enable them in your [`.babelrc` configuration](http://babeljs.io/docs/usage/babelrc/), and you're good to go.
|
||
8 years ago
|
|
||
|
### Hello World with ES6 and JSX
|
||
|
|
||
7 years ago
|
We recommend using a bundler like [webpack](https://webpack.js.org/) or [Browserify](http://browserify.org/), so you can write modular code and bundle it together into small packages to optimize load time.
|
||
8 years ago
|
|
||
|
The smallest React example looks like this:
|
||
8 years ago
|
|
||
|
```js
|
||
|
import React from 'react';
|
||
|
import ReactDOM from 'react-dom';
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<h1>Hello, world!</h1>,
|
||
|
document.getElementById('root')
|
||
|
);
|
||
|
```
|
||
|
|
||
7 years ago
|
This code renders into a DOM element with the id of `root`, so you need `<div id="root"></div>` somewhere in your HTML file.
|
||
8 years ago
|
|
||
8 years ago
|
Similarly, you can render a React component inside a DOM element somewhere inside your existing app written with any other JavaScript UI library.
|
||
8 years ago
|
|
||
7 years ago
|
[Learn more about integrating React with existing code.](/docs/integrating-with-other-libraries.html#integrating-with-other-view-libraries)
|
||
8 years ago
|
|
||
8 years ago
|
### Development and Production Versions
|
||
8 years ago
|
|
||
8 years ago
|
By default, React includes many helpful warnings. These warnings are very useful in development.
|
||
8 years ago
|
|
||
8 years ago
|
**However, they make the development version of React larger and slower so you should use the production version when you deploy the app.**
|
||
8 years ago
|
|
||
7 years ago
|
Learn [how to tell if your website is serving the right version of React](/docs/optimizing-performance.html#use-the-production-build), and how to configure the production build process most efficiently:
|
||
8 years ago
|
|
||
7 years ago
|
* [Creating a Production Build with Create React App](/docs/optimizing-performance.html#create-react-app)
|
||
|
* [Creating a Production Build with Single-File Builds](/docs/optimizing-performance.html#single-file-builds)
|
||
|
* [Creating a Production Build with Brunch](/docs/optimizing-performance.html#brunch)
|
||
|
* [Creating a Production Build with Browserify](/docs/optimizing-performance.html#browserify)
|
||
|
* [Creating a Production Build with Rollup](/docs/optimizing-performance.html#rollup)
|
||
|
* [Creating a Production Build with webpack](/docs/optimizing-performance.html#webpack)
|
||
8 years ago
|
|
||
8 years ago
|
### Using a CDN
|
||
|
|
||
7 years ago
|
If you don't want to use npm to manage client packages, the `react` and `react-dom` npm packages also provide single-file distributions in `umd` folders. See the [CDN](/docs/cdn-links.html) page for links.
|