README.md 11.2 KB
Newer Older
1
# 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
6
7
* [Getting Started](#getting-started) – How to create a new app.
* [User Guide](https://github.com/facebookincubator/create-react-app/blob/master/template/README.md) – How to develop apps bootstrapped with Create React App.

Ben Alpert's avatar
Ben Alpert committed
8
## tl;dr
Dan Abramov's avatar
Dan Abramov committed
9

Ben Alpert's avatar
Ben Alpert committed
10
11
```sh
npm install -g create-react-app
Dan Abramov's avatar
Dan Abramov committed
12

Ben Alpert's avatar
Ben Alpert committed
13
14
15
create-react-app my-app
cd my-app/
npm start
Dan Abramov's avatar
Dan Abramov committed
16

Ben Alpert's avatar
Ben Alpert committed
17
18
```

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'>

Ben Alpert's avatar
Ben Alpert committed
24
25
26
## Getting Started

### Installation
Dan Abramov's avatar
Dan Abramov committed
27

Dan Abramov's avatar
Dan Abramov committed
28
Install it once globally:
Dan Abramov's avatar
Dan Abramov committed
29

Dan Abramov's avatar
Dan Abramov committed
30
31
32
```sh
npm install -g create-react-app
```
Dan Abramov's avatar
Dan Abramov committed
33

34
**You’ll need to have Node >= 4 on your machine**. We recommend to use Node >= 6 and npm >= 3 for faster installation speed and better disk usage. You can use [nvm](https://github.com/creationix/nvm#usage) to easily switch Node versions between different projects.
Dan Abramov's avatar
Dan Abramov committed
35

Dan Abramov's avatar
Dan Abramov committed
36
**This tool doesn’t assume a Node backend**. The Node installation is only required for the build tools that rely on it locally, such as Webpack and Babel.
Dan Abramov's avatar
Dan Abramov committed
37

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

Dan Abramov's avatar
Dan Abramov committed
40
To create a new app, run:
Dan Abramov's avatar
Dan Abramov committed
41

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

Dan Abramov's avatar
Dan Abramov committed
47
It will create a directory called `my-app` inside the current folder.<br>
48
Inside that directory, it will generate the initial project structure and install the transitive dependencies:
Ben Alpert's avatar
Ben Alpert committed
49
50
51
52
53

```
my-app/
  README.md
  index.html
Dan Abramov's avatar
Dan Abramov committed
54
  favicon.ico
Ben Alpert's avatar
Ben Alpert committed
55
56
  node_modules/
  package.json
57
  .gitignore
Ben Alpert's avatar
Ben Alpert committed
58
59
60
  src/
    App.css
    App.js
Dan Abramov's avatar
Dan Abramov committed
61
    App.test.js
Ben Alpert's avatar
Ben Alpert committed
62
63
64
65
66
    index.css
    index.js
    logo.svg
```

Dan Abramov's avatar
Dan Abramov committed
67
No configuration or complicated folder structures, just the files you need to build your app.<br>
Ben Alpert's avatar
Ben Alpert committed
68
Once the installation is done, you can run some commands inside the project folder:
Dan Abramov's avatar
Dan Abramov committed
69

Dan Abramov's avatar
Dan Abramov committed
70
### `npm start`
Dan Abramov's avatar
Dan Abramov committed
71

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

Dan Abramov's avatar
Dan Abramov committed
75
The page will reload if you make edits.<br>
Dan Abramov's avatar
Dan Abramov committed
76
You will see the build errors and lint warnings in the console.
Dan Abramov's avatar
Dan Abramov committed
77
78

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

Dan Abramov's avatar
Dan Abramov committed
80
81
82
83
84
### `npm test`

Runs the test watcher in an interactive mode.  
By default, runs tests related to files changes since the last commit.

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

Dan Abramov's avatar
Dan Abramov committed
87
### `npm run build`
Dan Abramov's avatar
Dan Abramov committed
88

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

Dan Abramov's avatar
Dan Abramov committed
92
The build is minified and the filenames include the hashes.<br>
Dan Abramov's avatar
Dan Abramov committed
93
Your app is ready to be deployed!
94

95
## User Guide
Dan Abramov's avatar
Dan Abramov committed
96

97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
The [User Guide](https://github.com/facebookincubator/create-react-app/blob/master/template/README.md) includes information on different topics, such as:

- [Updating to New Releases](https://github.com/facebookincubator/create-react-app/blob/master/template/README.md#updating-to-new-releases)
- [Folder Structure](https://github.com/facebookincubator/create-react-app/blob/master/template/README.md#folder-structure)
- [Available Scripts](https://github.com/facebookincubator/create-react-app/blob/master/template/README.md#available-scripts)
- [Displaying Lint Output in the Editor](https://github.com/facebookincubator/create-react-app/blob/master/template/README.md#displaying-lint-output-in-the-editor)
- [Installing a Dependency](https://github.com/facebookincubator/create-react-app/blob/master/template/README.md#installing-a-dependency)
- [Importing a Component](https://github.com/facebookincubator/create-react-app/blob/master/template/README.md#importing-a-component)
- [Adding a Stylesheet](https://github.com/facebookincubator/create-react-app/blob/master/template/README.md#adding-a-stylesheet)
- [Post-Processing CSS](https://github.com/facebookincubator/create-react-app/blob/master/template/README.md#post-processing-css)
- [Adding Images and Fonts](https://github.com/facebookincubator/create-react-app/blob/master/template/README.md#adding-images-and-fonts)
- [Adding Bootstrap](https://github.com/facebookincubator/create-react-app/blob/master/template/README.md#adding-bootstrap)
- [Adding Flow](https://github.com/facebookincubator/create-react-app/blob/master/template/README.md#adding-flow)
- [Adding Custom Environment Variables](https://github.com/facebookincubator/create-react-app/blob/master/template/README.md#adding-custom-environment-variables)
- [Can I Use Decorators?](https://github.com/facebookincubator/create-react-app/blob/master/template/README.md#can-i-use-decorators)
- [Integrating with a Node Backend](https://github.com/facebookincubator/create-react-app/blob/master/template/README.md#integrating-with-a-node-backend)
- [Proxying API Requests in Development](https://github.com/facebookincubator/create-react-app/blob/master/template/README.md#proxying-api-requests-in-development)
- [Using HTTPS in Development](https://github.com/facebookincubator/create-react-app/blob/master/template/README.md#using-https-in-development)
- [Adding `<link>` and `<meta>` Tags](https://github.com/facebookincubator/create-react-app/blob/master/template/README.md#adding-link-and-meta-tags)
- [Running Tests](https://github.com/facebookincubator/create-react-app/blob/master/template/README.md#running-tests)
- [Deployment](https://github.com/facebookincubator/create-react-app/blob/master/template/README.md#deployment)
Dan Abramov's avatar
Dan Abramov committed
118
119

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

Ben Alpert's avatar
Ben Alpert committed
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
## 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.

* **Zero Configuration:** There are no configuration files or command line options. Configuring both development and production builds is handled for you so you can focus on writing code.

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

* React, JSX, and ES6 support.
* 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.

Dan Abramov's avatar
Dan Abramov committed
140
**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
141
142
143

**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
144
### Converting to a Custom Setup
Ben Alpert's avatar
Ben Alpert committed
145

Dan Abramov's avatar
Dan Abramov committed
146
**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.
147

148
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.
149

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

Dan Abramov's avatar
Dan Abramov committed
152
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.
153

Dan Abramov's avatar
Dan Abramov committed
154
155
156
157
## Limitations

Some features are currently **not supported**:

Dan Abramov's avatar
Dan Abramov committed
158
159
160
161
162
* Server rendering.
* Some experimental syntax extensions (e.g. decorators).
* CSS Modules.
* LESS or Sass.
* Hot reloading of components.
Dan Abramov's avatar
Dan Abramov committed
163
164
165

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
166
167
168
169
170
171
172
173
174
## 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:

* [webpack](https://webpack.github.io/) 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)
* [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
175
176
* [Jest](http://facebook.github.io/jest)
* and others.
Dan Abramov's avatar
Dan Abramov committed
177

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

Kevin Lacker's avatar
Kevin Lacker committed
180
## Contributing
Dan Abramov's avatar
Dan Abramov committed
181

182
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
183
184
185
186
187

## Acknowledgements

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

Dan Abramov's avatar
Dan Abramov committed
188
189
190
191
192
193
194
195
196
197
198
199
200
201
* [@eanplatter](https://github.com/eanplatter)
* [@insin](https://github.com/insin)
* [@mxstbr](https://github.com/mxstbr)

## Alternatives

If you don’t agree with the choices made in this project, you might want to explore alternatives with different tradeoffs:

* [enclave](https://github.com/eanplatter/enclave)
* [nwb](https://github.com/insin/nwb)
* [motion](https://github.com/motion/motion)
* [rackt-cli](https://github.com/mzabriskie/rackt-cli)
* [budō](https://github.com/mattdesl/budo)
* [rwb](https://github.com/petehunt/rwb)
202
* [quik](https://github.com/satya164/quik)
203
* [sagui](https://github.com/saguijs/sagui)
204
* [roc](https://github.com/rocjs/roc)
205
* [aik](https://github.com/d4rkr00t/aik)
206
* [react-app](https://github.com/kriasoft/react-app)
207
* [dev-toolkit](https://github.com/stoikerty/dev-toolkit)
208
* [mozilla-neo](https://github.com/mozilla/neo)
209
* [tarec](https://github.com/geowarin/tarec)
Dan Abramov's avatar
Dan Abramov committed
210

Dan Abramov's avatar
Dan Abramov committed
211
You can also use module bundlers like [webpack](http://webpack.github.io) and [Browserify](http://browserify.org/) directly.<br>
Dan Abramov's avatar
Dan Abramov committed
212
React documentation includes [a walkthrough](https://facebook.github.io/react/docs/package-management.html) on this topic.