README.md 15.8 KB
Newer Older
1
# Create React App [![Build Status](https://travis-ci.org/facebook/create-react-app.svg?branch=master)](https://travis-ci.org/facebook/create-react-app)
Dan Abramov's avatar
Dan Abramov committed
2

Dan Abramov's avatar
Dan Abramov committed
3
Create React apps with no build configuration.
Dan Abramov's avatar
Dan Abramov committed
4

Dan Abramov's avatar
Dan Abramov committed
5
* [Creating an App](#creating-an-app) – How to create a new app.
6
* [User Guide](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md) – How to develop apps bootstrapped with Create React App.
7

8
Create React App works on macOS, Windows, and Linux.<br>
9
If something doesn’t work, please [file an issue](https://github.com/facebook/create-react-app/issues/new).
10

moniuch's avatar
moniuch committed
11
## Quick Overview
Dan Abramov's avatar
Dan Abramov committed
12

Ben Alpert's avatar
Ben Alpert committed
13
```sh
Dan Abramov's avatar
Dan Abramov committed
14
15
npx create-react-app my-app
cd my-app
Ben Alpert's avatar
Ben Alpert committed
16
17
18
npm start
```

Dan Abramov's avatar
Dan Abramov committed
19
20
*([npx](https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b) comes with npm 5.2+ and higher, see [instructions for older npm versions](https://gist.github.com/gaearon/4064d3c23a77c74a3614c498a8bb1c5f))*

Dan Abramov's avatar
Dan Abramov committed
21
22
Then open [http://localhost:3000/](http://localhost:3000/) to see your app.<br>
When you’re ready to deploy to production, create a minified bundle with `npm run build`.
Ben Alpert's avatar
Ben Alpert committed
23

Mario Nebl's avatar
Mario Nebl committed
24
<p align='center'>
25
<img src='https://cdn.rawgit.com/facebook/create-react-app/27b42ac/screencast.svg' width='600' alt='npm start'>
Mario Nebl's avatar
Mario Nebl committed
26
</p>
Dan Abramov's avatar
Dan Abramov committed
27

moniuch's avatar
moniuch committed
28
29
30
31
32
33
34
### Get Started Immediately

You **don’t** need to install or configure tools like Webpack or Babel.<br>
They are preconfigured and hidden so that you can focus on the code.

Just create a project, and you’re good to go.

Dan Abramov's avatar
Dan Abramov committed
35
## Creating an App
Ben Alpert's avatar
Ben Alpert committed
36

Dan Abramov's avatar
Dan Abramov committed
37
**You’ll need to have Node >= 6 on your local development machine** (but it’s not required on the server). You can use [nvm](https://github.com/creationix/nvm#installation) (macOS/Linux) or [nvm-windows](https://github.com/coreybutler/nvm-windows#node-version-manager-nvm-for-windows) to easily switch Node versions between different projects.
Dan Abramov's avatar
Dan Abramov committed
38

39
40
41
To create a new app, you may choose one of the following methods:

### npx
Dan Abramov's avatar
Dan Abramov committed
42

Dan Abramov's avatar
Dan Abramov committed
43
```sh
Dan Abramov's avatar
Dan Abramov committed
44
npx create-react-app my-app
Dan Abramov's avatar
Dan Abramov committed
45
```
Dan Abramov's avatar
Dan Abramov committed
46

Dan Abramov's avatar
Dan Abramov committed
47
*([npx](https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b) comes with npm 5.2+ and higher, see [instructions for older npm versions](https://gist.github.com/gaearon/4064d3c23a77c74a3614c498a8bb1c5f))*
Dan Abramov's avatar
Dan Abramov committed
48

49
50
51
52
53
54
55
56
57
58
59
60
61
62
### npm

```sh
npm init react-app my-app
```
*`npm init <initializer>` is available in npm 6+*

### Yarn

```sh
yarn create react-app my-app
```
*`yarn create` is available in Yarn 0.25+*

Dan Abramov's avatar
Dan Abramov committed
63
It will create a directory called `my-app` inside the current folder.<br>
64
Inside that directory, it will generate the initial project structure and install the transitive dependencies:
Ben Alpert's avatar
Ben Alpert committed
65
66

```
shaun wallace's avatar
shaun wallace committed
67
68
69
70
71
72
my-app
├── README.md
├── node_modules
├── package.json
├── .gitignore
├── public
Reuben Antz's avatar
Reuben Antz committed
73
74
│   ├── favicon.ico
│   ├── index.html
shaun wallace's avatar
shaun wallace committed
75
76
│   └── manifest.json
└── src
Reuben Antz's avatar
Reuben Antz committed
77
78
79
80
81
82
    ├── App.css
    ├── App.js
    ├── App.test.js
    ├── index.css
    ├── index.js
    ├── logo.svg
shaun wallace's avatar
shaun wallace committed
83
    └── registerServiceWorker.js
Ben Alpert's avatar
Ben Alpert committed
84
85
```

Dan Abramov's avatar
Dan Abramov committed
86
No configuration or complicated folder structures, just the files you need to build your app.<br>
Dan Abramov's avatar
Dan Abramov committed
87
88
89
90
91
92
93
Once the installation is done, you can open your project folder:

```sh
cd my-app
```

Inside the newly created project, you can run some built-in commands:
Dan Abramov's avatar
Dan Abramov committed
94

95
### `npm start` or `yarn start`
Dan Abramov's avatar
Dan Abramov committed
96

97
Runs the app in development mode.<br>
Dan Abramov's avatar
Dan Abramov committed
98
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
Dan Abramov's avatar
Dan Abramov committed
99

100
The page will automatically reload if you make changes to the code.<br>
Dan Abramov's avatar
Dan Abramov committed
101
You will see the build errors and lint warnings in the console.
Dan Abramov's avatar
Dan Abramov committed
102

103
104
105
<p align='center'>
<img src='https://cdn.rawgit.com/marionebl/create-react-app/9f62826/screencast-error.svg' width='600' alt='Build errors'>
</p>
Dan Abramov's avatar
Dan Abramov committed
106

107
### `npm test` or `yarn test`
Dan Abramov's avatar
Dan Abramov committed
108

109
Runs the test watcher in an interactive mode.<br>
Tim Welch's avatar
Tim Welch committed
110
By default, runs tests related to files changed since the last commit.
Dan Abramov's avatar
Dan Abramov committed
111

112
[Read more about testing.](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#running-tests)
Dan Abramov's avatar
Dan Abramov committed
113

114
### `npm run build` or `yarn build`
Dan Abramov's avatar
Dan Abramov committed
115

Dan Abramov's avatar
Dan Abramov committed
116
Builds the app for production to the `build` folder.<br>
Dan Abramov's avatar
Dan Abramov committed
117
It correctly bundles React in production mode and optimizes the build for the best performance.
Dan Abramov's avatar
Dan Abramov committed
118

Dan Abramov's avatar
Dan Abramov committed
119
The build is minified and the filenames include the hashes.<br>
120
By default, it also [includes a service worker](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#making-a-progressive-web-app) so that your app loads from local cache on future visits.
121
122

Your app is ready to be deployed.
123

124
## User Guide
Dan Abramov's avatar
Dan Abramov committed
125

126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
The [User Guide](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md) includes information on different topics, such as:

- [Updating to New Releases](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#updating-to-new-releases)
- [Folder Structure](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#folder-structure)
- [Available Scripts](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#available-scripts)
- [Supported Browsers](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#supported-browsers)
- [Supported Language Features and Polyfills](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#supported-language-features-and-polyfills)
- [Syntax Highlighting in the Editor](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#syntax-highlighting-in-the-editor)
- [Displaying Lint Output in the Editor](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#displaying-lint-output-in-the-editor)
- [Formatting Code Automatically](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#formatting-code-automatically)
- [Debugging in the Editor](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#debugging-in-the-editor)
- [Changing the Page `<title>`](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#changing-the-page-title)
- [Installing a Dependency](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#installing-a-dependency)
- [Importing a Component](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#importing-a-component)
- [Code Splitting](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#code-splitting)
- [Adding a Stylesheet](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#adding-a-stylesheet)
- [Post-Processing CSS](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#post-processing-css)
- [Adding a CSS Preprocessor (Sass, Less etc.)](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#adding-a-css-preprocessor-sass-less-etc)
- [Adding Images, Fonts, and Files](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#adding-images-fonts-and-files)
- [Using the `public` Folder](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#using-the-public-folder)
- [Using Global Variables](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#using-global-variables)
- [Adding Bootstrap](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#adding-bootstrap)
- [Adding Flow](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#adding-flow)
- [Adding a Router](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#adding-a-router)
- [Adding Custom Environment Variables](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#adding-custom-environment-variables)
- [Can I Use Decorators?](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#can-i-use-decorators)
- [Fetching Data with AJAX Requests](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#fetching-data-with-ajax-requests)
- [Integrating with an API Backend](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#integrating-with-an-api-backend)
- [Proxying API Requests in Development](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#proxying-api-requests-in-development)
- [Using HTTPS in Development](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#using-https-in-development)
- [Generating Dynamic `<meta>` Tags on the Server](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#generating-dynamic-meta-tags-on-the-server)
- [Pre-Rendering into Static HTML Files](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#pre-rendering-into-static-html-files)
- [Running Tests](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#running-tests)
- [Debugging Tests](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#debugging-tests)
- [Developing Components in Isolation](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#developing-components-in-isolation)
- [Publishing Components to npm](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#publishing-components-to-npm)
- [Making a Progressive Web App](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#making-a-progressive-web-app)
- [Analyzing the Bundle Size](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#analyzing-the-bundle-size)
- [Deployment](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#deployment)
- [Advanced Configuration](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#advanced-configuration)
PatrickJS's avatar
PatrickJS committed
166
- [Troubleshooting](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#troubleshooting-1)
Dan Abramov's avatar
Dan Abramov committed
167
168

A copy of the user guide will be created as `README.md` in your project folder.
Dan Abramov's avatar
Dan Abramov committed
169

170
171
## How to Update to New Versions?

172
Please refer to the [User Guide](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#updating-to-new-releases) for this and other information.
173

Ben Alpert's avatar
Ben Alpert committed
174
175
176
177
## Philosophy

* **One Dependency:** There is just one build dependency. It uses Webpack, Babel, ESLint, and other amazing projects, but provides a cohesive curated experience on top of them.

178
* **No Configuration Required:** You don't need to configure anything. Reasonably good configuration of both development and production builds is handled for you so you can focus on writing code.
Ben Alpert's avatar
Ben Alpert committed
179
180
181

* **No Lock-In:** You can “eject” to a custom setup at any time. Run a single command, and all the configuration and build dependencies will be moved directly into your project, so you can pick up right where you left off.

Dan Abramov's avatar
Dan Abramov committed
182
## What’s Included?
Ben Alpert's avatar
Ben Alpert committed
183

Dan Abramov's avatar
Dan Abramov committed
184
Your environment will have everything you need to build a modern single-page React app:
Ben Alpert's avatar
Ben Alpert committed
185

Daniel Schep's avatar
Daniel Schep committed
186
* React, JSX, ES6, and Flow syntax support.
Ben Alpert's avatar
Ben Alpert committed
187
* Language extras beyond ES6 like the object spread operator.
Futa Ogawa's avatar
Futa Ogawa committed
188
* Autoprefixed CSS, so you don’t need `-webkit-` or other prefixes.
Dan Abramov's avatar
Dan Abramov committed
189
190
191
* A fast interactive unit test runner with built-in support for coverage reporting.
* A live development server that warns about common mistakes.
* A build script to bundle JS, CSS, and images for production, with hashes and sourcemaps.
192
* An offline-first [service worker](https://developers.google.com/web/fundamentals/getting-started/primers/service-workers) and a [web app manifest](https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/), meeting all the [Progressive Web App](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#making-a-progressive-web-app) criteria.
Dan Abramov's avatar
Dan Abramov committed
193
* Hassle-free updates for the above tools with a single dependency.
Ben Alpert's avatar
Ben Alpert committed
194

Dan Abramov's avatar
Dan Abramov committed
195
Check out [this guide](https://github.com/nitishdayal/cra_closer_look) for an overview of how these tools fit together.
Ben Alpert's avatar
Ben Alpert committed
196

197
The tradeoff is that **these tools are preconfigured to work in a specific way**. If your project needs more customization, you can ["eject"](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#npm-run-eject) and customize it, but then you will need to maintain this configuration.
198

Dan Abramov's avatar
Dan Abramov committed
199
## Popular Alternatives
200

Dan Abramov's avatar
Dan Abramov committed
201
Create React App is a great fit for:
202

Dan Abramov's avatar
Dan Abramov committed
203
204
205
* **Learning React** in a comfortable and feature-rich development environment.
* **Starting new single-page React applications.**
* **Creating examples** with React for your libraries and components.
206

Dan Abramov's avatar
Dan Abramov committed
207
Here’s a few common cases where you might want to try something else:
Dan Abramov's avatar
Dan Abramov committed
208

Dan Abramov's avatar
Dan Abramov committed
209
* If you want to **try React** without hundreds of transitive build tool dependencies, consider [using a single HTML file or an online sandbox instead](https://reactjs.org/docs/try-react.html).
Dan Abramov's avatar
Dan Abramov committed
210

211
* If you need to **integrate React code with a server-side template framework** like Rails or Django, or if you’re **not building a single-page app**, consider using [nwb](https://github.com/insin/nwb), or [Neutrino](https://neutrino.js.org/) which are more flexible. For Rails specifically, you can use [Rails Webpacker](https://github.com/rails/webpacker).
Dan Abramov's avatar
Dan Abramov committed
212

213
* If you need to **publish a React component**, [nwb](https://github.com/insin/nwb) can [also do this](https://github.com/insin/nwb#react-components-and-libraries), as well as [Neutrino's react-components preset](https://neutrino.js.org/packages/react-components/).
Dan Abramov's avatar
Dan Abramov committed
214

Dan Abramov's avatar
Dan Abramov committed
215
* If you want to do **server rendering** with React and Node.js, check out [Next.js](https://github.com/zeit/next.js/) or [Razzle](https://github.com/jaredpalmer/razzle). Create React App is agnostic of the backend, and just produces static HTML/JS/CSS bundles.
Dan Abramov's avatar
Dan Abramov committed
216

Dan Abramov's avatar
Dan Abramov committed
217
* If your website is **mostly static** (for example, a portfolio or a blog), consider using [Gatsby](https://www.gatsbyjs.org/) instead. Unlike Create React App, it pre-renders the website into HTML at the build time.
Dan Abramov's avatar
Dan Abramov committed
218

Clayton Ray's avatar
Clayton Ray committed
219
220
* If you want to use **TypeScript**, consider using [create-react-app-typescript](https://github.com/wmonk/create-react-app-typescript).

221
222
* If you want to use **Parcel** instead of **Webpack** as your bundler, consider using [create-react-app-parcel](https://github.com/sw-yx/create-react-app-parcel).

Dan Abramov's avatar
Dan Abramov committed
223
* Finally, if you need **more customization**, check out [Neutrino](https://neutrino.js.org/) and its [React preset](https://neutrino.js.org/packages/react/).
Dan Abramov's avatar
Dan Abramov committed
224

Dan Abramov's avatar
Dan Abramov committed
225
All of the above tools can work with little to no configuration.
Dan Abramov's avatar
Dan Abramov committed
226

Dan Abramov's avatar
Dan Abramov committed
227
If you prefer configuring the build yourself, [follow this guide](https://reactjs.org/docs/add-react-to-an-existing-app.html).
Dan Abramov's avatar
Dan Abramov committed
228

Kevin Lacker's avatar
Kevin Lacker committed
229
## Contributing
Dan Abramov's avatar
Dan Abramov committed
230

231
We'd love to have your helping hand on `create-react-app`! See [CONTRIBUTING.md](CONTRIBUTING.md) for more information on what we're looking for and how to get started.
Dan Abramov's avatar
Dan Abramov committed
232

Dan Abramov's avatar
Dan Abramov committed
233
234
235
236
237
## React Native

Looking for something similar, but for React Native?<br>
Check out [Create React Native App](https://github.com/react-community/create-react-native-app/).

Dan Abramov's avatar
Dan Abramov committed
238
239
240
241
## Acknowledgements

We are grateful to the authors of existing related projects for their ideas and collaboration:

Dan Abramov's avatar
Dan Abramov committed
242
243
244
* [@eanplatter](https://github.com/eanplatter)
* [@insin](https://github.com/insin)
* [@mxstbr](https://github.com/mxstbr)
245
246
247
248

## License

Create React App is open source software [licensed as MIT](https://github.com/facebook/create-react-app/blob/master/LICENSE).