README.md 17.5 KB
Newer Older
1
# Create React App [![Build Status](https://travis-ci.org/facebookincubator/create-react-app.svg?branch=master)](https://travis-ci.org/facebookincubator/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

5
* [Getting Started](#getting-started) – How to create a new app.
6
* [User Guide](https://github.com/facebookincubator/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/facebookincubator/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
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
21

Dan Abramov's avatar
Dan Abramov committed
22
23
<img src='https://camo.githubusercontent.com/506a5a0a33aebed2bf0d24d3999af7f582b31808/687474703a2f2f692e696d6775722e636f6d2f616d794e66434e2e706e67' width='600' alt='npm start'>

moniuch's avatar
moniuch committed
24
25
26
27
28
29
30
### 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.

Ben Alpert's avatar
Ben Alpert committed
31
32
## Getting Started

Dan Abramov's avatar
Dan Abramov committed
33
### Prerequisites
Dan Abramov's avatar
Dan Abramov committed
34

35
**You’ll need to have Node >= 6 on your machine**. 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
36

Dan Abramov's avatar
Dan Abramov committed
37
**This tool doesn’t assume a Node backend**. The Node installation is only required for Create React App itself.
Dan Abramov's avatar
Dan Abramov committed
38

Ben Alpert's avatar
Ben Alpert committed
39
### Creating an App
Dan Abramov's avatar
Dan Abramov committed
40

Dan Abramov's avatar
Dan Abramov committed
41
To create a new app, run a single command:
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
48
([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
49
It will create a directory called `my-app` inside the current folder.<br>
50
Inside that directory, it will generate the initial project structure and install the transitive dependencies:
Ben Alpert's avatar
Ben Alpert committed
51
52

```
shaun wallace's avatar
shaun wallace committed
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
my-app
├── README.md
├── node_modules
├── package.json
├── .gitignore
├── public
│   └── favicon.ico
│   └── index.html
│   └── manifest.json
└── src
    └── App.css
    └── App.js
    └── App.test.js
    └── index.css
    └── index.js
    └── logo.svg
    └── registerServiceWorker.js
Ben Alpert's avatar
Ben Alpert committed
70
71
```

Dan Abramov's avatar
Dan Abramov committed
72
No configuration or complicated folder structures, just the files you need to build your app.<br>
Dan Abramov's avatar
Dan Abramov committed
73
74
75
76
77
78
79
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
80

81
### `npm start` or `yarn start`
Dan Abramov's avatar
Dan Abramov committed
82

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

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

<img src='https://camo.githubusercontent.com/41678b3254cf583d3186c365528553c7ada53c6e/687474703a2f2f692e696d6775722e636f6d2f466e4c566677362e706e67' width='600' alt='Build errors'>
Dan Abramov's avatar
Dan Abramov committed
90

91
### `npm test` or `yarn test`
Dan Abramov's avatar
Dan Abramov committed
92

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

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

98
### `npm run build` or `yarn build`
Dan Abramov's avatar
Dan Abramov committed
99

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

Dan Abramov's avatar
Dan Abramov committed
103
The build is minified and the filenames include the hashes.<br>
104
105
106
By default, it also [includes a service worker](https://github.com/facebookincubator/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.

Your app is ready to be deployed.
107

108
## User Guide
Dan Abramov's avatar
Dan Abramov committed
109

110
111
112
113
114
The [User Guide](https://github.com/facebookincubator/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/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#updating-to-new-releases)
- [Folder Structure](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#folder-structure)
- [Available Scripts](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#available-scripts)
115
- [Supported Browsers](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#supported-browsers)
116
- [Supported Language Features and Polyfills](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#supported-language-features-and-polyfills)
117
- [Syntax Highlighting in the Editor](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#syntax-highlighting-in-the-editor)
118
- [Displaying Lint Output in the Editor](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#displaying-lint-output-in-the-editor)
119
- [Formatting Code Automatically](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#formatting-code-automatically)
120
- [Debugging in the Editor](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#debugging-in-the-editor)
121
- [Changing the Page `<title>`](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#changing-the-page-title)
122
123
- [Installing a Dependency](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#installing-a-dependency)
- [Importing a Component](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#importing-a-component)
124
- [Code Splitting](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#code-splitting)
125
126
- [Adding a Stylesheet](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#adding-a-stylesheet)
- [Post-Processing CSS](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#post-processing-css)
Dan Abramov's avatar
Dan Abramov committed
127
- [Adding a CSS Preprocessor (Sass, Less etc.)](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#adding-a-css-preprocessor-sass-less-etc)
Dan Abramov's avatar
Dan Abramov committed
128
- [Adding Images, Fonts, and Files](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#adding-images-fonts-and-files)
Dan Abramov's avatar
Dan Abramov committed
129
- [Using the `public` Folder](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#using-the-public-folder)
Dan Abramov's avatar
Dan Abramov committed
130
- [Using Global Variables](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#using-global-variables)
131
132
- [Adding Bootstrap](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#adding-bootstrap)
- [Adding Flow](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#adding-flow)
Dan Abramov's avatar
Dan Abramov committed
133
- [Adding a Router](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#adding-a-router)
134
135
- [Adding Custom Environment Variables](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#adding-custom-environment-variables)
- [Can I Use Decorators?](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#can-i-use-decorators)
136
- [Integrating with an API Backend](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#integrating-with-an-api-backend)
137
138
- [Proxying API Requests in Development](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#proxying-api-requests-in-development)
- [Using HTTPS in Development](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#using-https-in-development)
Dan Abramov's avatar
Dan Abramov committed
139
- [Generating Dynamic `<meta>` Tags on the Server](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#generating-dynamic-meta-tags-on-the-server)
140
- [Pre-Rendering into Static HTML Files](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#pre-rendering-into-static-html-files)
141
- [Running Tests](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#running-tests)
142
- [Developing Components in Isolation](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#developing-components-in-isolation)
Dan Abramov's avatar
Dan Abramov committed
143
- [Publishing Components to npm](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#publishing-components-to-npm)
144
- [Making a Progressive Web App](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#making-a-progressive-web-app)
145
- [Analyzing the Bundle Size](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#analyzing-the-bundle-size)
146
- [Deployment](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#deployment)
147
- [Advanced Configuration](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#advanced-configuration)
148
- [Troubleshooting](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#troubleshooting)
Dan Abramov's avatar
Dan Abramov committed
149
150

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

152
153
154
155
## How to Update to New Versions?

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

Ben Alpert's avatar
Ben Alpert committed
156
157
158
159
## 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.

160
* **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
161
162
163
164
165
166
167

* **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.

## Why Use This?

**If you’re getting started** with React, use `create-react-app` to automate the build of your app. There is no configuration file, and `react-scripts` is the only extra build dependency in your `package.json`. Your environment will have everything you need to build a modern React app:

Daniel Schep's avatar
Daniel Schep committed
168
* React, JSX, ES6, and Flow syntax support.
Ben Alpert's avatar
Ben Alpert committed
169
170
171
172
173
* Language extras beyond ES6 like the object spread operator.
* A dev server that lints for common errors.
* Import CSS and image files directly from JavaScript.
* Autoprefixed CSS, so you don’t need `-webkit` or other prefixes.
* A `build` script to bundle JS, CSS, and images for production, with sourcemaps.
174
* 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/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#making-a-progressive-web-app) criteria.
Ben Alpert's avatar
Ben Alpert committed
175

Dan Abramov's avatar
Dan Abramov committed
176
**The feature set is intentionally limited**. It doesn’t support advanced features such as server rendering or CSS modules. The tool is also **non-configurable** because it is hard to provide a cohesive experience and easy updates across a set of tools when the user can tweak anything.
Ben Alpert's avatar
Ben Alpert committed
177
178
179

**You don’t have to use this.** Historically it has been easy to [gradually adopt](https://www.youtube.com/watch?v=BF58ZJ1ZQxY) React. However many people create new single-page React apps from scratch every day. We’ve heard [loud](https://medium.com/@ericclemmons/javascript-fatigue-48d4011b6fc4) and [clear](https://twitter.com/thomasfuchs/status/708675139253174273) that this process can be error-prone and tedious, especially if this is your first JavaScript build stack. This project is an attempt to figure out a good way to start developing React apps.

Dan Abramov's avatar
Dan Abramov committed
180
### Converting to a Custom Setup
Ben Alpert's avatar
Ben Alpert committed
181

Dan Abramov's avatar
Dan Abramov committed
182
**If you’re a power user** and you aren’t happy with the default configuration, you can “eject” from the tool and use it as a boilerplate generator.
183

184
Running `npm run eject` copies all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. Commands like `npm start` and `npm run build` will still work, but they will point to the copied scripts so you can tweak them. At this point, you’re on your own.
185

Dan Abramov's avatar
Dan Abramov committed
186
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
187

Dan Abramov's avatar
Dan Abramov committed
188
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
189

Dan Abramov's avatar
Dan Abramov committed
190
191
192
193
## Limitations

Some features are currently **not supported**:

Dan Abramov's avatar
Dan Abramov committed
194
195
* Server rendering.
* Some experimental syntax extensions (e.g. decorators).
196
* CSS Modules (see [#2285](https://github.com/facebookincubator/create-react-app/pull/2285)).
Dan Abramov's avatar
Dan Abramov committed
197
* Importing LESS or Sass directly ([but you still can use them](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#adding-a-css-preprocessor-sass-less-etc)).
Dan Abramov's avatar
Dan Abramov committed
198
* Hot reloading of components.
Dan Abramov's avatar
Dan Abramov committed
199
200
201

Some of them might get added in the future if they are stable, are useful to majority of React apps, don’t conflict with existing tools, and don’t introduce additional configuration.

Dan Abramov's avatar
Dan Abramov committed
202
203
204
205
206
## What’s Inside?

The tools used by Create React App are subject to change.
Currently it is a thin layer on top of many amazing community projects, such as:

207
* [webpack](https://webpack.js.org/) with [webpack-dev-server](https://github.com/webpack/webpack-dev-server), [html-webpack-plugin](https://github.com/ampedandwired/html-webpack-plugin) and [style-loader](https://github.com/webpack/style-loader)
Dan Abramov's avatar
Dan Abramov committed
208
209
210
* [Babel](http://babeljs.io/) with ES6 and extensions used by Facebook (JSX, [object spread](https://github.com/sebmarkbage/ecmascript-rest-spread/commits/master), [class properties](https://github.com/jeffmo/es-class-public-fields))
* [Autoprefixer](https://github.com/postcss/autoprefixer)
* [ESLint](http://eslint.org/)
Dan Abramov's avatar
Dan Abramov committed
211
212
* [Jest](http://facebook.github.io/jest)
* and others.
Dan Abramov's avatar
Dan Abramov committed
213

214
All of them are transitive dependencies of the provided npm package.
Dan Abramov's avatar
Dan Abramov committed
215

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

Kevin Lacker's avatar
Kevin Lacker committed
218
## Contributing
Dan Abramov's avatar
Dan Abramov committed
219

220
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
221

Dan Abramov's avatar
Dan Abramov committed
222
223
224
225
226
## 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
227
228
229
230
## Acknowledgements

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

Dan Abramov's avatar
Dan Abramov committed
231
232
233
234
235
236
* [@eanplatter](https://github.com/eanplatter)
* [@insin](https://github.com/insin)
* [@mxstbr](https://github.com/mxstbr)

## Alternatives

237
If you don’t agree with the choices made in this project, you might want to explore alternatives with different tradeoffs.<br>
238
239
240
Some of the more popular and actively maintained ones are:

* [insin/nwb](https://github.com/insin/nwb)
241
* [mozilla-neutrino/neutrino-dev](https://github.com/mozilla-neutrino/neutrino-dev)
242
* [jaredpalmer/razzle](https://github.com/jaredpalmer/razzle)
243
* [NYTimes/kyt](https://github.com/NYTimes/kyt)
Dan Abramov's avatar
Dan Abramov committed
244
* [zeit/next.js](https://github.com/zeit/next.js)
245
* [gatsbyjs/gatsby](https://github.com/gatsbyjs/gatsby)
246
* [electrode-io/electrode](https://github.com/electrode-io/electrode)
247
248

Notable alternatives also include:
Dan Abramov's avatar
Dan Abramov committed
249
250

* [enclave](https://github.com/eanplatter/enclave)
251
* [motion](https://github.com/steelbrain/pundle/tree/master/packages/motion)
252
* [quik](https://github.com/satya164/quik)
253
* [sagui](https://github.com/saguijs/sagui)
254
* [roc](https://github.com/rocjs/roc)
255
* [aik](https://github.com/d4rkr00t/aik)
256
* [react-app](https://github.com/kriasoft/react-app)
257
* [dev-toolkit](https://github.com/stoikerty/dev-toolkit)
258
* [sku](https://github.com/seek-oss/sku)
259
* [gluestick](https://github.com/TrueCar/gluestick)
Dan Abramov's avatar
Dan Abramov committed
260

261
You can also use module bundlers like [webpack](http://webpack.js.org) and [Browserify](http://browserify.org/) directly.<br>
262
React documentation includes [a walkthrough](https://reactjs.org/docs/installation.html#development-and-production-versions) on this topic.