├── .gitignore ├── LICENSE ├── README-CRA.md ├── README.md ├── package.json ├── public ├── favicon.ico └── index.html ├── src ├── App.css ├── App.test.tsx ├── App.tsx ├── actions │ └── index.tsx ├── components │ ├── Hello.css │ ├── Hello.test.tsx │ └── Hello.tsx ├── constants │ └── index.tsx ├── containers │ └── Hello.tsx ├── index.css ├── index.tsx ├── logo.svg ├── reducers │ └── index.tsx └── types │ └── index.tsx ├── tsconfig.json ├── tslint.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | # See http://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | 6 | # testing 7 | /coverage 8 | 9 | # production 10 | /build 11 | 12 | # misc 13 | .DS_Store 14 | .env 15 | npm-debug.log 16 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) Microsoft Corporation. All rights reserved. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE 22 | -------------------------------------------------------------------------------- /README-CRA.md: -------------------------------------------------------------------------------- 1 | This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app). 2 | 3 | Below you will find some information on how to perform common tasks.
4 | You can find the most recent version of this guide [here](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md). 5 | 6 | ## Table of Contents 7 | 8 | - [Updating to New Releases](#updating-to-new-releases) 9 | - [Sending Feedback](#sending-feedback) 10 | - [Folder Structure](#folder-structure) 11 | - [Available Scripts](#available-scripts) 12 | - [npm start](#npm-start) 13 | - [npm test](#npm-test) 14 | - [npm run build](#npm-run-build) 15 | - [npm run eject](#npm-run-eject) 16 | - [Syntax Highlighting in the Editor](#syntax-highlighting-in-the-editor) 17 | - [Displaying Lint Output in the Editor](#displaying-lint-output-in-the-editor) 18 | - [Changing the Page ``](#changing-the-page-title) 19 | - [Installing a Dependency](#installing-a-dependency) 20 | - [Importing a Component](#importing-a-component) 21 | - [Adding a Stylesheet](#adding-a-stylesheet) 22 | - [Post-Processing CSS](#post-processing-css) 23 | - [Adding Images and Fonts](#adding-images-and-fonts) 24 | - [Using the `public` Folder](#using-the-public-folder) 25 | - [Changing the HTML](#changing-the-html) 26 | - [Adding Assets Outside of the Module System](#adding-assets-outside-of-the-module-system) 27 | - [When to Use the `public` Folder](#when-to-use-the-public-folder) 28 | - [Using Global Variables](#using-global-variables) 29 | - [Adding Bootstrap](#adding-bootstrap) 30 | - [Adding Flow](#adding-flow) 31 | - [Adding Custom Environment Variables](#adding-custom-environment-variables) 32 | - [Can I Use Decorators?](#can-i-use-decorators) 33 | - [Integrating with a Node Backend](#integrating-with-a-node-backend) 34 | - [Proxying API Requests in Development](#proxying-api-requests-in-development) 35 | - [Using HTTPS in Development](#using-https-in-development) 36 | - [Generating Dynamic `<meta>` Tags on the Server](#generating-dynamic-meta-tags-on-the-server) 37 | - [Running Tests](#running-tests) 38 | - [Filename Conventions](#filename-conventions) 39 | - [Command Line Interface](#command-line-interface) 40 | - [Version Control Integration](#version-control-integration) 41 | - [Writing Tests](#writing-tests) 42 | - [Testing Components](#testing-components) 43 | - [Using Third Party Assertion Libraries](#using-third-party-assertion-libraries) 44 | - [Initializing Test Environment](#initializing-test-environment) 45 | - [Focusing and Excluding Tests](#focusing-and-excluding-tests) 46 | - [Coverage Reporting](#coverage-reporting) 47 | - [Continuous Integration](#continuous-integration) 48 | - [Disabling jsdom](#disabling-jsdom) 49 | - [Experimental Snapshot Testing](#experimental-snapshot-testing) 50 | - [Editor Integration](#editor-integration) 51 | - [Developing Components in Isolation](#developing-components-in-isolation) 52 | - [Making a Progressive Web App](#making-a-progressive-web-app) 53 | - [Deployment](#deployment) 54 | - [Serving Apps with Client-Side Routing](#serving-apps-with-client-side-routing) 55 | - [Building for Relative Paths](#building-for-relative-paths) 56 | - [Firebase](#firebase) 57 | - [GitHub Pages](#github-pages) 58 | - [Heroku](#heroku) 59 | - [Modulus](#modulus) 60 | - [Netlify](#netlify) 61 | - [Now](#now) 62 | - [S3 and CloudFront](#s3-and-cloudfront) 63 | - [Surge](#surge) 64 | - [Troubleshooting](#troubleshooting) 65 | - [`npm test` hangs on macOS Sierra](#npm-test-hangs-on-macos-sierra) 66 | - [`npm run build` silently fails](#npm-run-build-silently-fails) 67 | - [`npm run build` fails on Heroku](#npm-run-build-fails-on-heroku) 68 | - [Something Missing?](#something-missing) 69 | 70 | ## Updating to New Releases 71 | 72 | Create React App is divided into two packages: 73 | 74 | * `create-react-app` is a global command-line utility that you use to create new projects. 75 | * `react-scripts` is a development dependency in the generated projects (including this one). 76 | 77 | You almost never need to update `create-react-app` itself: it delegates all the setup to `react-scripts`. 78 | 79 | When you run `create-react-app`, it always creates the project with the latest version of `react-scripts` so you’ll get all the new features and improvements in newly created apps automatically. 80 | 81 | To update an existing project to a new version of `react-scripts`, [open the changelog](https://github.com/facebookincubator/create-react-app/blob/master/CHANGELOG.md), find the version you’re currently on (check `package.json` in this folder if you’re not sure), and apply the migration instructions for the newer versions. 82 | 83 | In most cases bumping the `react-scripts` version in `package.json` and running `npm install` in this folder should be enough, but it’s good to consult the [changelog](https://github.com/facebookincubator/create-react-app/blob/master/CHANGELOG.md) for potential breaking changes. 84 | 85 | We commit to keeping the breaking changes minimal so you can upgrade `react-scripts` painlessly. 86 | 87 | ## Sending Feedback 88 | 89 | We are always open to [your feedback](https://github.com/facebookincubator/create-react-app/issues). 90 | 91 | ## Folder Structure 92 | 93 | After creation, your project should look like this: 94 | 95 | ``` 96 | my-app/ 97 | README.md 98 | node_modules/ 99 | package.json 100 | public/ 101 | index.html 102 | favicon.ico 103 | src/ 104 | App.css 105 | App.js 106 | App.test.js 107 | index.css 108 | index.js 109 | logo.svg 110 | ``` 111 | 112 | For the project to build, **these files must exist with exact filenames**: 113 | 114 | * `public/index.html` is the page template; 115 | * `src/index.js` is the JavaScript entry point. 116 | 117 | You can delete or rename the other files. 118 | 119 | You may create subdirectories inside `src`. For faster rebuilds, only files inside `src` are processed by Webpack.<br> 120 | You need to **put any JS and CSS files inside `src`**, or Webpack won’t see them. 121 | 122 | Only files inside `public` can be used from `public/index.html`.<br> 123 | Read instructions below for using assets from JavaScript and HTML. 124 | 125 | You can, however, create more top-level directories.<br> 126 | They will not be included in the production build so you can use them for things like documentation. 127 | 128 | ## Available Scripts 129 | 130 | In the project directory, you can run: 131 | 132 | ### `npm start` 133 | 134 | Runs the app in the development mode.<br> 135 | Open [http://localhost:3000](http://localhost:3000) to view it in the browser. 136 | 137 | The page will reload if you make edits.<br> 138 | You will also see any lint errors in the console. 139 | 140 | ### `npm test` 141 | 142 | Launches the test runner in the interactive watch mode.<br> 143 | See the section about [running tests](#running-tests) for more information. 144 | 145 | ### `npm run build` 146 | 147 | Builds the app for production to the `build` folder.<br> 148 | It correctly bundles React in production mode and optimizes the build for the best performance. 149 | 150 | The build is minified and the filenames include the hashes.<br> 151 | Your app is ready to be deployed! 152 | 153 | See the section about [deployment](#deployment) for more information. 154 | 155 | ### `npm run eject` 156 | 157 | **Note: this is a one-way operation. Once you `eject`, you can’t go back!** 158 | 159 | If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. 160 | 161 | Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, TSLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. 162 | 163 | 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. 164 | 165 | ## Syntax Highlighting in the Editor 166 | 167 | To configure the syntax highlighting in your favorite text editor, head to the [relevant Babel documentation page](https://babeljs.io/docs/editors) and follow the instructions. Some of the most popular editors are covered. 168 | 169 | ## Displaying Lint Output in the Editor 170 | 171 | >Note: this feature is available with `react-scripts@0.2.0` and higher. 172 | 173 | Some editors, including Sublime Text, Atom, and Visual Studio Code, provide plugins for TSLint. 174 | 175 | They are not required for linting. You should see the linter output right in your terminal as well as the browser console. However, if you prefer the lint results to appear right in your editor, there are some extra steps you can do. 176 | 177 | You would need to install an TSLint plugin for your editor first. 178 | 179 | ## Changing the Page `<title>` 180 | 181 | You can find the source HTML file in the `public` folder of the generated project. You may edit the `<title>` tag in it to change the title from “React App” to anything else. 182 | 183 | Note that normally you wouldn't edit files in the `public` folder very often. For example, [adding a stylesheet](#adding-a-stylesheet) is is done without touching the HTML. 184 | 185 | If you need to dynamically update the page title based on the content, you can use the browser [`document.title`](https://developer.mozilla.org/en-US/docs/Web/API/Document/title) API. For more complex scenarios when you want to change the title from React components, you can use [React Helmet](https://github.com/nfl/react-helmet), a third party library. 186 | 187 | Finally, if you use a custom server for your app in production and want to modify the title before it gets sent to the browser, you can follow advice in [this section](#generating-dynamic-meta-tags-on-the-server). 188 | 189 | ## Installing a Dependency 190 | 191 | The generated project includes React and ReactDOM as dependencies. It also includes a set of scripts used by Create React App as a development dependency. You may install other dependencies (for example, React Router) with `npm`: 192 | 193 | ``` 194 | npm install --save <library-name> 195 | ``` 196 | 197 | ## Importing a Component 198 | 199 | This project setup supports ES6 modules thanks to Babel.<br> 200 | While you can still use `require()` and `module.exports`, we encourage you to use [`import` and `export`](http://exploringjs.com/es6/ch_modules.html) instead. 201 | 202 | For example: 203 | 204 | ### `Button.js` 205 | 206 | ```js 207 | import React, { Component } from 'react'; 208 | 209 | class Button extends Component { 210 | render() { 211 | // ... 212 | } 213 | } 214 | 215 | export default Button; // Don’t forget to use export default! 216 | ``` 217 | 218 | ### `DangerButton.js` 219 | 220 | 221 | ```js 222 | import React, { Component } from 'react'; 223 | import Button from './Button'; // Import a component from another file 224 | 225 | class DangerButton extends Component { 226 | render() { 227 | return <Button color="red" />; 228 | } 229 | } 230 | 231 | export default DangerButton; 232 | ``` 233 | 234 | Be aware of the [difference between default and named exports](http://stackoverflow.com/questions/36795819/react-native-es-6-when-should-i-use-curly-braces-for-import/36796281#36796281). It is a common source of mistakes. 235 | 236 | We suggest that you stick to using default imports and exports when a module only exports a single thing (for example, a component). That’s what you get when you use `export default Button` and `import Button from './Button'`. 237 | 238 | Named exports are useful for utility modules that export several functions. A module may have at most one default export and as many named exports as you like. 239 | 240 | Learn more about ES6 modules: 241 | 242 | * [When to use the curly braces?](http://stackoverflow.com/questions/36795819/react-native-es-6-when-should-i-use-curly-braces-for-import/36796281#36796281) 243 | * [Exploring ES6: Modules](http://exploringjs.com/es6/ch_modules.html) 244 | * [Understanding ES6: Modules](https://leanpub.com/understandinges6/read#leanpub-auto-encapsulating-code-with-modules) 245 | 246 | ## Adding a Stylesheet 247 | 248 | This project setup uses [Webpack](https://webpack.github.io/) for handling all assets. Webpack offers a custom way of “extending” the concept of `import` beyond JavaScript. To express that a JavaScript file depends on a CSS file, you need to **import the CSS from the JavaScript file**: 249 | 250 | ### `Button.css` 251 | 252 | ```css 253 | .Button { 254 | padding: 20px; 255 | } 256 | ``` 257 | 258 | ### `Button.js` 259 | 260 | ```js 261 | import React, { Component } from 'react'; 262 | import './Button.css'; // Tell Webpack that Button.js uses these styles 263 | 264 | class Button extends Component { 265 | render() { 266 | // You can use them as regular CSS styles 267 | return <div className="Button" />; 268 | } 269 | } 270 | ``` 271 | 272 | **This is not required for React** but many people find this feature convenient. You can read about the benefits of this approach [here](https://medium.com/seek-ui-engineering/block-element-modifying-your-javascript-components-d7f99fcab52b). However you should be aware that this makes your code less portable to other build tools and environments than Webpack. 273 | 274 | In development, expressing dependencies this way allows your styles to be reloaded on the fly as you edit them. In production, all CSS files will be concatenated into a single minified `.css` file in the build output. 275 | 276 | If you are concerned about using Webpack-specific semantics, you can put all your CSS right into `src/index.css`. It would still be imported from `src/index.js`, but you could always remove that import if you later migrate to a different build tool. 277 | 278 | ## Post-Processing CSS 279 | 280 | This project setup minifies your CSS and adds vendor prefixes to it automatically through [Autoprefixer](https://github.com/postcss/autoprefixer) so you don’t need to worry about it. 281 | 282 | For example, this: 283 | 284 | ```css 285 | .App { 286 | display: flex; 287 | flex-direction: row; 288 | align-items: center; 289 | } 290 | ``` 291 | 292 | becomes this: 293 | 294 | ```css 295 | .App { 296 | display: -webkit-box; 297 | display: -ms-flexbox; 298 | display: flex; 299 | -webkit-box-orient: horizontal; 300 | -webkit-box-direction: normal; 301 | -ms-flex-direction: row; 302 | flex-direction: row; 303 | -webkit-box-align: center; 304 | -ms-flex-align: center; 305 | align-items: center; 306 | } 307 | ``` 308 | 309 | There is currently no support for preprocessors such as Less, or for sharing variables across CSS files. 310 | 311 | ## Adding Images and Fonts 312 | 313 | With Webpack, using static assets like images and fonts works similarly to CSS. 314 | 315 | You can **`import` an image right in a JavaScript module**. This tells Webpack to include that image in the bundle. Unlike CSS imports, importing an image or a font gives you a string value. This value is the final image path you can reference in your code. 316 | 317 | Here is an example: 318 | 319 | ```js 320 | import React from 'react'; 321 | import logo from './logo.png'; // Tell Webpack this JS file uses this image 322 | 323 | console.log(logo); // /logo.84287d09.png 324 | 325 | function Header() { 326 | // Import result is the URL of your image 327 | return <img src={logo} alt="Logo" />; 328 | } 329 | 330 | export default Header; 331 | ``` 332 | 333 | This ensures that when the project is built, Webpack will correctly move the images into the build folder, and provide us with correct paths. 334 | 335 | This works in CSS too: 336 | 337 | ```css 338 | .Logo { 339 | background-image: url(./logo.png); 340 | } 341 | ``` 342 | 343 | Webpack finds all relative module references in CSS (they start with `./`) and replaces them with the final paths from the compiled bundle. If you make a typo or accidentally delete an important file, you will see a compilation error, just like when you import a non-existent JavaScript module. The final filenames in the compiled bundle are generated by Webpack from content hashes. If the file content changes in the future, Webpack will give it a different name in production so you don’t need to worry about long-term caching of assets. 344 | 345 | Please be advised that this is also a custom feature of Webpack. 346 | 347 | **It is not required for React** but many people enjoy it (and React Native uses a similar mechanism for images).<br> 348 | An alternative way of handling static assets is described in the next section. 349 | 350 | ## Using the `public` Folder 351 | 352 | >Note: this feature is available with `react-scripts@0.5.0` and higher. 353 | 354 | ### Changing the HTML 355 | 356 | The `public` folder contains the HTML file so you can tweak it, for example, to [set the page title](#changing-the-page-title). 357 | The `<script>` tag with the compiled code will be added to it automatically during the build process. 358 | 359 | ### Adding Assets Outside of the Module System 360 | 361 | You can also add other assets to the `public` folder. 362 | 363 | Note that we normally we encourage you to `import` assets in JavaScript files instead. 364 | For example, see the sections on [adding a stylesheet](#adding-a-stylesheet) and [adding images and fonts](#adding-images-and-fonts). 365 | This mechanism provides a number of benefits: 366 | 367 | * Scripts and stylesheets get minified and bundled together to avoid extra network requests. 368 | * Missing files cause compilation errors instead of 404 errors for your users. 369 | * Result filenames include content hashes so you don’t need to worry about browsers caching their old versions. 370 | 371 | However there is an **escape hatch** that you can use to add an asset outside of the module system. 372 | 373 | If you put a file into the `public` folder, it will **not** be processed by Webpack. Instead it will be copied into the build folder untouched. To reference assets in the `public` folder, you need to use a special variable called `PUBLIC_URL`. 374 | 375 | Inside `index.html`, you can use it like this: 376 | 377 | ```html 378 | <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico"> 379 | ``` 380 | 381 | Only files inside the `public` folder will be accessible by `%PUBLIC_URL%` prefix. If you need to use a file from `src` or `node_modules`, you’ll have to copy it there to explicitly specify your intention to make this file a part of the build. 382 | 383 | When you run `npm run build`, Create React App will substitute `%PUBLIC_URL%` with a correct absolute path so your project works even if you use client-side routing or host it at a non-root URL. 384 | 385 | In JavaScript code, you can use `process.env.PUBLIC_URL` for similar purposes: 386 | 387 | ```js 388 | render() { 389 | // Note: this is an escape hatch and should be used sparingly! 390 | // Normally we recommend using `import` for getting asset URLs 391 | // as described in “Adding Images and Fonts” above this section. 392 | return <img src={process.env.PUBLIC_URL + '/img/logo.png'} />; 393 | } 394 | ``` 395 | 396 | Keep in mind the downsides of this approach: 397 | 398 | * None of the files in `public` folder get post-processed or minified. 399 | * Missing files will not be called at compilation time, and will cause 404 errors for your users. 400 | * Result filenames won’t include content hashes so you’ll need to add query arguments or rename them every time they change. 401 | 402 | ### When to Use the `public` Folder 403 | 404 | Normally we recommend importing [stylesheets](#adding-a-stylesheet), [images, and fonts](#adding-images-and-fonts) from JavaScript. 405 | The `public` folder is useful as a workaround for a number of less common cases: 406 | 407 | * You need a file with a specific name in the build output, such as [`manifest.webmanifest`](https://developer.mozilla.org/en-US/docs/Web/Manifest). 408 | * You have thousands of images and need to dynamically reference their paths. 409 | * You want to include a small script like [`pace.js`](http://github.hubspot.com/pace/docs/welcome/) outside of the bundled code. 410 | * Some library may be incompatible with Webpack and you have no other option but to include it as a `<script>` tag. 411 | 412 | Note that if you add a `<script>` that declares global variables, you also need to read the next section on using them. 413 | 414 | ## Using Global Variables 415 | 416 | When you include a script in the HTML file that defines global variables and try to use one of these variables in the code, the linter will complain because it cannot see the definition of the variable. 417 | 418 | You can avoid this by reading the global variable explicitly from the `window` object, for example: 419 | 420 | ```js 421 | const $ = window.$; 422 | ``` 423 | 424 | This makes it obvious you are using a global variable intentionally rather than because of a typo. 425 | 426 | Alternatively, you can force the linter to ignore any line by adding `// tslint:disable-line` after it. 427 | 428 | ## Adding Bootstrap 429 | 430 | You don’t have to use [React Bootstrap](https://react-bootstrap.github.io) together with React but it is a popular library for integrating Bootstrap with React apps. If you need it, you can integrate it with Create React App by following these steps: 431 | 432 | Install React Bootstrap and Bootstrap from NPM. React Bootstrap does not include Bootstrap CSS so this needs to be installed as well: 433 | 434 | ``` 435 | npm install react-bootstrap --save 436 | npm install bootstrap@3 --save 437 | ``` 438 | 439 | Import Bootstrap CSS and optionally Bootstrap theme CSS in the ```src/index.js``` file: 440 | 441 | ```js 442 | import 'bootstrap/dist/css/bootstrap.css'; 443 | import 'bootstrap/dist/css/bootstrap-theme.css'; 444 | ``` 445 | 446 | Import required React Bootstrap components within ```src/App.js``` file or your custom component files: 447 | 448 | ```js 449 | import { Navbar, Jumbotron, Button } from 'react-bootstrap'; 450 | ``` 451 | 452 | Now you are ready to use the imported React Bootstrap components within your component hierarchy defined in the render method. Here is an example [`App.js`](https://gist.githubusercontent.com/gaearon/85d8c067f6af1e56277c82d19fd4da7b/raw/6158dd991b67284e9fc8d70b9d973efe87659d72/App.js) redone using React Bootstrap. 453 | 454 | ## Adding Flow 455 | 456 | Flow is a static type checker that helps you write code with fewer bugs. Check out this [introduction to using static types in JavaScript](https://medium.com/@preethikasireddy/why-use-static-types-in-javascript-part-1-8382da1e0adb) if you are new to this concept. 457 | 458 | Recent versions of [Flow](http://flowtype.org/) work with Create React App projects out of the box. 459 | 460 | To add Flow to a Create React App project, follow these steps: 461 | 462 | 1. Run `npm install --save-dev flow-bin`. 463 | 2. Add `"flow": "flow"` to the `scripts` section of your `package.json`. 464 | 3. Add `// @flow` to any files you want to type check (for example, to `src/App.js`). 465 | 466 | Now you can run `npm run flow` to check the files for type errors. 467 | You can optionally use an IDE like [Nuclide](https://nuclide.io/docs/languages/flow/) for a better integrated experience. 468 | In the future we plan to integrate it into Create React App even more closely. 469 | 470 | To learn more about Flow, check out [its documentation](https://flowtype.org/). 471 | 472 | ## Adding Custom Environment Variables 473 | 474 | >Note: this feature is available with `react-scripts@0.2.3` and higher. 475 | 476 | Your project can consume variables declared in your environment as if they were declared locally in your JS files. By 477 | default you will have `NODE_ENV` defined for you, and any other environment variables starting with 478 | `REACT_APP_`. These environment variables will be defined for you on `process.env`. For example, having an environment 479 | variable named `REACT_APP_SECRET_CODE` will be exposed in your JS as `process.env.REACT_APP_SECRET_CODE`, in addition 480 | to `process.env.NODE_ENV`. 481 | 482 | >Note: Changing any environment variables will require you to restart the development server if it is running. 483 | 484 | These environment variables can be useful for displaying information conditionally based on where the project is 485 | deployed or consuming sensitive data that lives outside of version control. 486 | 487 | First, you need to have environment variables defined. For example, let’s say you wanted to consume a secret defined 488 | in the environment inside a `<form>`: 489 | 490 | ```jsx 491 | render() { 492 | return ( 493 | <div> 494 | <small>You are running this application in <b>{process.env.NODE_ENV}</b> mode.</small> 495 | <form> 496 | <input type="hidden" defaultValue={process.env.REACT_APP_SECRET_CODE} /> 497 | </form> 498 | </div> 499 | ); 500 | } 501 | ``` 502 | 503 | During the build, `process.env.REACT_APP_SECRET_CODE` will be replaced with the current value of the `REACT_APP_SECRET_CODE` environment variable. Remember that the `NODE_ENV` variable will be set for you automatically. 504 | 505 | When you load the app in the browser and inspect the `<input>`, you will see its value set to `abcdef`, and the bold text will show the environment provided when using `npm start`: 506 | 507 | ```html 508 | <div> 509 | <small>You are running this application in <b>development</b> mode.</small> 510 | <form> 511 | <input type="hidden" value="abcdef" /> 512 | </form> 513 | </div> 514 | ``` 515 | 516 | Having access to the `NODE_ENV` is also useful for performing actions conditionally: 517 | 518 | ```js 519 | if (process.env.NODE_ENV !== 'production') { 520 | analytics.disable(); 521 | } 522 | ``` 523 | 524 | The above form is looking for a variable called `REACT_APP_SECRET_CODE` from the environment. In order to consume this 525 | value, we need to have it defined in the environment. This can be done using two ways: either in your shell or in 526 | a `.env` file. 527 | 528 | ### Adding Temporary Environment Variables In Your Shell 529 | 530 | Defining environment variables can vary between OSes. It's also important to know that this manner is temporary for the 531 | life of the shell session. 532 | 533 | #### Windows (cmd.exe) 534 | 535 | ```cmd 536 | set REACT_APP_SECRET_CODE=abcdef&&npm start 537 | ``` 538 | 539 | (Note: the lack of whitespace is intentional.) 540 | 541 | #### Linux, OS X (Bash) 542 | 543 | ```bash 544 | REACT_APP_SECRET_CODE=abcdef npm start 545 | ``` 546 | 547 | ### Adding Development Environment Variables In `.env` 548 | 549 | >Note: this feature is available with `react-scripts@0.5.0` and higher. 550 | 551 | To define permanent environment variables, create a file called `.env` in the root of your project: 552 | 553 | ``` 554 | REACT_APP_SECRET_CODE=abcdef 555 | ``` 556 | 557 | These variables will act as the defaults if the machine does not explicitly set them.<br> 558 | Please refer to the [dotenv documentation](https://github.com/motdotla/dotenv) for more details. 559 | 560 | >Note: If you are defining environment variables for development, your CI and/or hosting platform will most likely need 561 | these defined as well. Consult their documentation how to do this. For example, see the documentation for [Travis CI](https://docs.travis-ci.com/user/environment-variables/) or [Heroku](https://devcenter.heroku.com/articles/config-vars). 562 | 563 | ## Can I Use Decorators? 564 | 565 | Many popular libraries use [decorators](https://medium.com/google-developers/exploring-es7-decorators-76ecb65fb841) in their documentation.<br> 566 | Create React App doesn’t support decorator syntax at the moment because: 567 | 568 | * It is an experimental proposal and is subject to change. 569 | * The current specification version is not officially supported by Babel. 570 | * If the specification changes, we won’t be able to write a codemod because we don’t use them internally at Facebook. 571 | 572 | However in many cases you can rewrite decorator-based code without decorators just as fine.<br> 573 | Please refer to these two threads for reference: 574 | 575 | * [#214](https://github.com/facebookincubator/create-react-app/issues/214) 576 | * [#411](https://github.com/facebookincubator/create-react-app/issues/411) 577 | 578 | Create React App will add decorator support when the specification advances to a stable stage. 579 | 580 | ## Integrating with a Node Backend 581 | 582 | Check out [this tutorial](https://www.fullstackreact.com/articles/using-create-react-app-with-a-server/) for instructions on integrating an app with a Node backend running on another port, and using `fetch()` to access it. You can find the companion GitHub repository [here](https://github.com/fullstackreact/food-lookup-demo). 583 | 584 | ## Proxying API Requests in Development 585 | 586 | >Note: this feature is available with `react-scripts@0.2.3` and higher. 587 | 588 | People often serve the front-end React app from the same host and port as their backend implementation.<br> 589 | For example, a production setup might look like this after the app is deployed: 590 | 591 | ``` 592 | / - static server returns index.html with React app 593 | /todos - static server returns index.html with React app 594 | /api/todos - server handles any /api/* requests using the backend implementation 595 | ``` 596 | 597 | Such setup is **not** required. However, if you **do** have a setup like this, it is convenient to write requests like `fetch('/api/todos')` without worrying about redirecting them to another host or port during development. 598 | 599 | To tell the development server to proxy any unknown requests to your API server in development, add a `proxy` field to your `package.json`, for example: 600 | 601 | ```js 602 | "proxy": "http://localhost:4000", 603 | ``` 604 | 605 | This way, when you `fetch('/api/todos')` in development, the development server will recognize that it’s not a static asset, and will proxy your request to `http://localhost:4000/api/todos` as a fallback. The development server will only attempt to send requests without a `text/html` accept header to the proxy. 606 | 607 | Conveniently, this avoids [CORS issues](http://stackoverflow.com/questions/21854516/understanding-ajax-cors-and-security-considerations) and error messages like this in development: 608 | 609 | ``` 610 | Fetch API cannot load http://localhost:4000/api/todos. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:3000' is therefore not allowed access. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled. 611 | ``` 612 | 613 | Keep in mind that `proxy` only has effect in development (with `npm start`), and it is up to you to ensure that URLs like `/api/todos` point to the right thing in production. You don’t have to use the `/api` prefix. Any unrecognized request without a `text/html` accept header will be redirected to the specified `proxy`. 614 | 615 | Currently the `proxy` option only handles HTTP requests, and it won’t proxy WebSocket connections.<br> 616 | If the `proxy` option is **not** flexible enough for you, alternatively you can: 617 | 618 | * Enable CORS on your server ([here’s how to do it for Express](http://enable-cors.org/server_expressjs.html)). 619 | * Use [environment variables](#adding-custom-environment-variables) to inject the right server host and port into your app. 620 | 621 | ## Using HTTPS in Development 622 | 623 | >Note: this feature is available with `react-scripts@0.4.0` and higher. 624 | 625 | You may require the dev server to serve pages over HTTPS. One particular case where this could be useful is when using [the "proxy" feature](#proxying-api-requests-in-development) to proxy requests to an API server when that API server is itself serving HTTPS. 626 | 627 | To do this, set the `HTTPS` environment variable to `true`, then start the dev server as usual with `npm start`: 628 | 629 | #### Windows (cmd.exe) 630 | 631 | ```cmd 632 | set HTTPS=true&&npm start 633 | ``` 634 | 635 | (Note: the lack of whitespace is intentional.) 636 | 637 | #### Linux, OS X (Bash) 638 | 639 | ```bash 640 | HTTPS=true npm start 641 | ``` 642 | 643 | Note that the server will use a self-signed certificate, so your web browser will almost definitely display a warning upon accessing the page. 644 | 645 | ## Generating Dynamic `<meta>` Tags on the Server 646 | 647 | Since Create React App doesn’t support server rendering, you might be wondering how to make `<meta>` tags dynamic and reflect the current URL. To solve this, we recommend to add placeholders into the HTML, like this: 648 | 649 | ```html 650 | <!doctype html> 651 | <html lang="en"> 652 | <head> 653 | <meta property="og:title" content="%OG_TITLE%"> 654 | <meta property="og:description" content="%OG_DESCRIPTION%"> 655 | ``` 656 | 657 | Then, on the server, regardless of the backend you use, you can read `index.html` into memory and replace `%OG_TITLE%`, `%OG_DESCRIPTION%`, and any other placeholders with values depending on the current URL. Just make sure to sanitize and escape the interpolated values so that they are safe to embed into HTML! 658 | 659 | If you use a Node server, you can even share the route matching logic between the client and the server. However duplicating it also works fine in simple cases. 660 | 661 | ## Running Tests 662 | 663 | >Note: this feature is available with `react-scripts@0.3.0` and higher.<br> 664 | >[Read the migration guide to learn how to enable it in older projects!](https://github.com/facebookincubator/create-react-app/blob/master/CHANGELOG.md#migrating-from-023-to-030) 665 | 666 | Create React App uses [Jest](https://facebook.github.io/jest/) as its test runner. To prepare for this integration, we did a [major revamp](https://facebook.github.io/jest/blog/2016/09/01/jest-15.html) of Jest so if you heard bad things about it years ago, give it another try. 667 | 668 | Jest is a Node-based runner. This means that the tests always run in a Node environment and not in a real browser. This lets us enable fast iteration speed and prevent flakiness. 669 | 670 | While Jest provides browser globals such as `window` thanks to [jsdom](https://github.com/tmpvar/jsdom), they are only approximations of the real browser behavior. Jest is intended to be used for unit tests of your logic and your components rather than the DOM quirks. 671 | 672 | We recommend that you use a separate tool for browser end-to-end tests if you need them. They are beyond the scope of Create React App. 673 | 674 | ### Filename Conventions 675 | 676 | Jest will look for test files with any of the following popular naming conventions: 677 | 678 | * Files with `.js` suffix in `__tests__` folders. 679 | * Files with `.test.js` suffix. 680 | * Files with `.spec.js` suffix. 681 | 682 | The `.test.js` / `.spec.js` files (or the `__tests__` folders) can be located at any depth under the `src` top level folder. 683 | 684 | We recommend to put the test files (or `__tests__` folders) next to the code they are testing so that relative imports appear shorter. For example, if `App.test.js` and `App.js` are in the same folder, the test just needs to `import App from './App'` instead of a long relative path. Colocation also helps find tests more quickly in larger projects. 685 | 686 | ### Command Line Interface 687 | 688 | When you run `npm test`, Jest will launch in the watch mode. Every time you save a file, it will re-run the tests, just like `npm start` recompiles the code. 689 | 690 | The watcher includes an interactive command-line interface with the ability to run all tests, or focus on a search pattern. It is designed this way so that you can keep it open and enjoy fast re-runs. You can learn the commands from the “Watch Usage” note that the watcher prints after every run: 691 | 692 | ![Jest watch mode](http://facebook.github.io/jest/img/blog/15-watch.gif) 693 | 694 | ### Version Control Integration 695 | 696 | By default, when you run `npm test`, Jest will only run the tests related to files changed since the last commit. This is an optimization designed to make your tests runs fast regardless of how many tests you have. However it assumes that you don’t often commit the code that doesn’t pass the tests. 697 | 698 | Jest will always explicitly mention that it only ran tests related to the files changed since the last commit. You can also press `a` in the watch mode to force Jest to run all tests. 699 | 700 | Jest will always run all tests on a [continuous integration](#continuous-integration) server or if the project is not inside a Git or Mercurial repository. 701 | 702 | ### Writing Tests 703 | 704 | To create tests, add `it()` (or `test()`) blocks with the name of the test and its code. You may optionally wrap them in `describe()` blocks for logical grouping but this is neither required nor recommended. 705 | 706 | Jest provides a built-in `expect()` global function for making assertions. A basic test could look like this: 707 | 708 | ```js 709 | import sum from './sum'; 710 | 711 | it('sums numbers', () => { 712 | expect(sum(1, 2)).toEqual(3); 713 | expect(sum(2, 2)).toEqual(4); 714 | }); 715 | ``` 716 | 717 | All `expect()` matchers supported by Jest are [extensively documented here](http://facebook.github.io/jest/docs/api.html#expect-value).<br> 718 | You can also use [`jest.fn()` and `expect(fn).toBeCalled()`](http://facebook.github.io/jest/docs/api.html#tobecalled) to create “spies” or mock functions. 719 | 720 | ### Testing Components 721 | 722 | There is a broad spectrum of component testing techniques. They range from a “smoke test” verifying that a component renders without throwing, to shallow rendering and testing some of the output, to full rendering and testing component lifecycle and state changes. 723 | 724 | Different projects choose different testing tradeoffs based on how often components change, and how much logic they contain. If you haven’t decided on a testing strategy yet, we recommend that you start with creating simple smoke tests for your components: 725 | 726 | ```js 727 | import React from 'react'; 728 | import ReactDOM from 'react-dom'; 729 | import App from './App'; 730 | 731 | it('renders without crashing', () => { 732 | const div = document.createElement('div'); 733 | ReactDOM.render(<App />, div); 734 | }); 735 | ``` 736 | 737 | This test mounts a component and makes sure that it didn’t throw during rendering. Tests like this provide a lot value with very little effort so they are great as a starting point, and this is the test you will find in `src/App.test.js`. 738 | 739 | When you encounter bugs caused by changing components, you will gain a deeper insight into which parts of them are worth testing in your application. This might be a good time to introduce more specific tests asserting specific expected output or behavior. 740 | 741 | If you’d like to test components in isolation from the child components they render, we recommend using [`shallow()` rendering API](http://airbnb.io/enzyme/docs/api/shallow.html) from [Enzyme](http://airbnb.io/enzyme/). You can write a smoke test with it too: 742 | 743 | ```sh 744 | npm install --save-dev enzyme react-addons-test-utils 745 | ``` 746 | 747 | ```js 748 | import React from 'react'; 749 | import { shallow } from 'enzyme'; 750 | import App from './App'; 751 | 752 | it('renders without crashing', () => { 753 | shallow(<App />); 754 | }); 755 | ``` 756 | 757 | Unlike the previous smoke test using `ReactDOM.render()`, this test only renders `<App>` and doesn’t go deeper. For example, even if `<App>` itself renders a `<Button>` that throws, this test will pass. Shallow rendering is great for isolated unit tests, but you may still want to create some full rendering tests to ensure the components integrate correctly. Enzyme supports [full rendering with `mount()`](http://airbnb.io/enzyme/docs/api/mount.html), and you can also use it for testing state changes and component lifecycle. 758 | 759 | You can read the [Enzyme documentation](http://airbnb.io/enzyme/) for more testing techniques. Enzyme documentation uses Chai and Sinon for assertions but you don’t have to use them because Jest provides built-in `expect()` and `jest.fn()` for spies. 760 | 761 | Here is an example from Enzyme documentation that asserts specific output, rewritten to use Jest matchers: 762 | 763 | ```js 764 | import React from 'react'; 765 | import { shallow } from 'enzyme'; 766 | import App from './App'; 767 | 768 | it('renders welcome message', () => { 769 | const wrapper = shallow(<App />); 770 | const welcome = <h2>Welcome to React</h2>; 771 | // expect(wrapper.contains(welcome)).to.equal(true); 772 | expect(wrapper.contains(welcome)).toEqual(true); 773 | }); 774 | ``` 775 | 776 | All Jest matchers are [extensively documented here](http://facebook.github.io/jest/docs/api.html#expect-value).<br> 777 | Nevertheless you can use a third-party assertion library like [Chai](http://chaijs.com/) if you want to, as described below. 778 | 779 | ### Using Third Party Assertion Libraries 780 | 781 | We recommend that you use `expect()` for assertions and `jest.fn()` for spies. If you are having issues with them please [file those against Jest](https://github.com/facebook/jest/issues/new), and we’ll fix them. We intend to keep making them better for React, supporting, for example, [pretty-printing React elements as JSX](https://github.com/facebook/jest/pull/1566). 782 | 783 | However, if you are used to other libraries, such as [Chai](http://chaijs.com/) and [Sinon](http://sinonjs.org/), or if you have existing code using them that you’d like to port over, you can import them normally like this: 784 | 785 | ```js 786 | import sinon from 'sinon'; 787 | import { expect } from 'chai'; 788 | ``` 789 | 790 | and then use them in your tests like you normally do. 791 | 792 | ### Initializing Test Environment 793 | 794 | >Note: this feature is available with `react-scripts@0.4.0` and higher. 795 | 796 | If your app uses a browser API that you need to mock in your tests or if you just need a global setup before running your tests, add a `src/setupTests.ts` to your project. It will be automatically executed before running your tests. 797 | 798 | For example: 799 | 800 | #### `src/setupTests.ts` 801 | ```js 802 | declare global { 803 | interface localStorage { 804 | getItem: any; 805 | setItem: any; 806 | clean: any; 807 | } 808 | } 809 | 810 | class LocalStorageMock { 811 | store = {}; 812 | clear() { 813 | this.store = {}; 814 | } 815 | getItem(key: any) { 816 | return this.store[key]; 817 | } 818 | setItem(key: any, value: any) { 819 | this.store[key] = value.toString(); 820 | } 821 | }; 822 | 823 | global.localStorage = new LocalStorageMock(); 824 | ``` 825 | 826 | ### Focusing and Excluding Tests 827 | 828 | You can replace `it()` with `xit()` to temporarily exclude a test from being executed.<br> 829 | Similarly, `fit()` lets you focus on a specific test without running any other tests. 830 | 831 | ### Coverage Reporting 832 | 833 | Jest has an integrated coverage reporter that works well with ES6 and requires no configuration.<br> 834 | Run `npm test -- --coverage` (note extra `--` in the middle) to include a coverage report like this: 835 | 836 | ![coverage report](http://i.imgur.com/5bFhnTS.png) 837 | 838 | Note that tests run much slower with coverage so it is recommended to run it separately from your normal workflow. 839 | 840 | ### Continuous Integration 841 | 842 | By default `npm test` runs the watcher with interactive CLI. However, you can force it to run tests once and finish the process by setting an environment variable called `CI`. 843 | 844 | When creating a build of your application with `npm run build` linter warnings are not checked by default. Like `npm test`, you can force the build to perform a linter warning check by setting the environment variable `CI`. If any warnings are encountered then the build fails. 845 | 846 | Popular CI servers already set the environment variable `CI` by default but you can do this yourself too: 847 | 848 | ### On CI servers 849 | #### Travis CI 850 | 851 | 1. Following the [Travis Getting started](https://docs.travis-ci.com/user/getting-started/) guide for syncing your GitHub repository with Travis. You may need to initialize some settings manually in your [profile](https://travis-ci.org/profile) page. 852 | 1. Add a `.travis.yml` file to your git repository. 853 | ``` 854 | language: node_js 855 | node_js: 856 | - 4 857 | - 6 858 | cache: 859 | directories: 860 | - node_modules 861 | script: 862 | - npm test 863 | - npm run build 864 | ``` 865 | 1. Trigger your first build with a git push. 866 | 1. [Customize your Travis CI Build](https://docs.travis-ci.com/user/customizing-the-build/) if needed. 867 | 868 | ### On your own environment 869 | ##### Windows (cmd.exe) 870 | 871 | ```cmd 872 | set CI=true&&npm test 873 | ``` 874 | 875 | ```cmd 876 | set CI=true&&npm run build 877 | ``` 878 | 879 | (Note: the lack of whitespace is intentional.) 880 | 881 | ##### Linux, OS X (Bash) 882 | 883 | ```bash 884 | CI=true npm test 885 | ``` 886 | 887 | ```bash 888 | CI=true npm run build 889 | ``` 890 | 891 | The test command will force Jest to run tests once instead of launching the watcher. 892 | 893 | > If you find yourself doing this often in development, please [file an issue](https://github.com/facebookincubator/create-react-app/issues/new) to tell us about your use case because we want to make watcher the best experience and are open to changing how it works to accommodate more workflows. 894 | 895 | The build command will check for linter warnings and fail if any are found. 896 | 897 | ### Disabling jsdom 898 | 899 | By default, the `package.json` of the generated project looks like this: 900 | 901 | ```js 902 | // ... 903 | "scripts": { 904 | // ... 905 | "test": "react-scripts test --env=jsdom" 906 | } 907 | ``` 908 | 909 | If you know that none of your tests depend on [jsdom](https://github.com/tmpvar/jsdom), you can safely remove `--env=jsdom`, and your tests will run faster.<br> 910 | To help you make up your mind, here is a list of APIs that **need jsdom**: 911 | 912 | * Any browser globals like `window` and `document` 913 | * [`ReactDOM.render()`](https://facebook.github.io/react/docs/top-level-api.html#reactdom.render) 914 | * [`TestUtils.renderIntoDocument()`](https://facebook.github.io/react/docs/test-utils.html#renderintodocument) ([a shortcut](https://github.com/facebook/react/blob/34761cf9a252964abfaab6faf74d473ad95d1f21/src/test/ReactTestUtils.js#L83-L91) for the above) 915 | * [`mount()`](http://airbnb.io/enzyme/docs/api/mount.html) in [Enzyme](http://airbnb.io/enzyme/index.html) 916 | 917 | In contrast, **jsdom is not needed** for the following APIs: 918 | 919 | * [`TestUtils.createRenderer()`](https://facebook.github.io/react/docs/test-utils.html#shallow-rendering) (shallow rendering) 920 | * [`shallow()`](http://airbnb.io/enzyme/docs/api/shallow.html) in [Enzyme](http://airbnb.io/enzyme/index.html) 921 | 922 | Finally, jsdom is also not needed for [snapshot testing](http://facebook.github.io/jest/blog/2016/07/27/jest-14.html). Longer term, this is the direction we are interested in exploring, but snapshot testing is [not fully baked yet](https://github.com/facebookincubator/create-react-app/issues/372) so we don’t officially encourage its usage yet. 923 | 924 | ### Experimental Snapshot Testing 925 | 926 | Snapshot testing is a new feature of Jest that automatically generates text snapshots of your components and saves them on the disk so if the UI output changes, you get notified without manually writing any assertions on the component output. 927 | 928 | This feature is experimental and still [has major usage issues](https://github.com/facebookincubator/create-react-app/issues/372) so we only encourage you to use it if you like experimental technology. We intend to gradually improve it over time and eventually offer it as the default solution for testing React components, but this will take time. [Read more about snapshot testing.](http://facebook.github.io/jest/blog/2016/07/27/jest-14.html) 929 | 930 | ### Editor Integration 931 | 932 | If you use [Visual Studio Code](https://code.visualstudio.com), there is a [Jest extension](https://github.com/orta/vscode-jest) which works with Create React App out of the box. This provides a lot of IDE-like features while using a text editor: showing the status of a test run with potential fail messages inline, starting and stopping the watcher automatically, and offering one-click snapshot updates. 933 | 934 | ![VS Code Jest Preview](https://cloud.githubusercontent.com/assets/49038/20795349/a032308a-b7c8-11e6-9b34-7eeac781003f.png) 935 | 936 | ## Developing Components in Isolation 937 | 938 | Usually, in an app, you have a lot of UI components, and each of them has many different states. 939 | For an example, a simple button component could have following states: 940 | 941 | * With a text label. 942 | * With an emoji. 943 | * In the disabled mode. 944 | 945 | Usually, it’s hard to see these states without running a sample app or some examples. 946 | 947 | Create React App doesn't include any tools for this by default, but you can easily add [React Storybook](https://github.com/kadirahq/react-storybook) to your project. **It is a third-party tool that lets you develop components and see all their states in isolation from your app**. 948 | 949 | ![React Storybook Demo](http://i.imgur.com/7CIAWpB.gif) 950 | 951 | You can also deploy your Storybook as a static app. This way, everyone in your team can view and review different states of UI components without starting a backend server or creating an account in your app. 952 | 953 | **Here’s how to setup your app with Storybook:** 954 | 955 | First, install the following npm package globally: 956 | 957 | ```sh 958 | npm install -g getstorybook 959 | ``` 960 | 961 | Then, run the following command inside your app’s directory: 962 | 963 | ```sh 964 | getstorybook 965 | ``` 966 | 967 | After that, follow the instructions on the screen. 968 | 969 | Learn more about React Storybook: 970 | 971 | * Screencast: [Getting Started with React Storybook](https://egghead.io/lessons/react-getting-started-with-react-storybook) 972 | * [GitHub Repo](https://github.com/kadirahq/react-storybook) 973 | * [Documentation](https://getstorybook.io/docs) 974 | * [Snapshot Testing](https://github.com/kadirahq/storyshots) with React Storybook 975 | 976 | ## Making a Progressive Web App 977 | 978 | You can turn your React app into a [Progressive Web App](https://developers.google.com/web/progressive-web-apps/) by following the steps in [this repository](https://github.com/jeffposnick/create-react-pwa). 979 | 980 | ## Deployment 981 | 982 | `npm run build` creates a `build` directory with a production build of your app. Set up your favourite HTTP server so that a visitor to your site is served `index.html`, and requests to static paths like `/static/js/main.<hash>.js` are served with the contents of the `/static/js/main.<hash>.js` file. For example, Python contains a built-in HTTP server that can serve static files: 983 | 984 | ```sh 985 | cd build 986 | python -m SimpleHTTPServer 9000 987 | ``` 988 | 989 | If you're using [Node](https://nodejs.org/) and [Express](http://expressjs.com/) as a server, it might look like this: 990 | 991 | ```javascript 992 | const express = require('express'); 993 | const path = require('path'); 994 | const app = express(); 995 | 996 | app.use(express.static('./build')); 997 | 998 | app.get('/', function (req, res) { 999 | res.sendFile(path.join(__dirname, './build', 'index.html')); 1000 | }); 1001 | 1002 | app.listen(9000); 1003 | ``` 1004 | 1005 | Create React App is not opinionated about your choice of web server. Any static file server will do. The `build` folder with static assets is the only output produced by Create React App. 1006 | 1007 | However this is not quite enough if you use client-side routing. Read the next section if you want to support URLs like `/todos/42` in your single-page app. 1008 | 1009 | ### Serving Apps with Client-Side Routing 1010 | 1011 | If you use routers that use the HTML5 [`pushState` history API](https://developer.mozilla.org/en-US/docs/Web/API/History_API#Adding_and_modifying_history_entries) under the hood (for example, [React Router](https://github.com/ReactTraining/react-router) with `browserHistory`), many static file servers will fail. For example, if you used React Router with a route for `/todos/42`, the development server will respond to `localhost:3000/todos/42` properly, but an Express serving a production build as above will not. 1012 | 1013 | This is because when there is a fresh page load for a `/todos/42`, the server looks for the file `build/todos/42` and does not find it. The server needs to be configured to respond to a request to `/todos/42` by serving `index.html`. For example, we can amend our Express example above to serve `index.html` for any unknown paths: 1014 | 1015 | ```diff 1016 | app.use(express.static('./build')); 1017 | 1018 | -app.get('/', function (req, res) { 1019 | +app.get('/*', function (req, res) { 1020 | res.sendFile(path.join(__dirname, './build', 'index.html')); 1021 | }); 1022 | ``` 1023 | 1024 | Now requests to `/todos/42` will be handled correctly both in development and in production. 1025 | 1026 | ### Building for Relative Paths 1027 | 1028 | By default, Create React App produces a build assuming your app is hosted at the server root.<br> 1029 | To override this, specify the `homepage` in your `package.json`, for example: 1030 | 1031 | ```js 1032 | "homepage": "http://mywebsite.com/relativepath", 1033 | ``` 1034 | 1035 | This will let Create React App correctly infer the root path to use in the generated HTML file. 1036 | 1037 | 1038 | ### Firebase 1039 | 1040 | Install the Firebase CLI if you haven't already by running `npm install -g firebase-tools`. Sign up for a [Firebase account](https://console.firebase.google.com/) and create a new project. Run `firebase login` and login with your previous created Firebase account. 1041 | 1042 | Then run the `firebase init` command from your project's root. You need to choose the **Hosting: Configure and deploy Firebase Hosting sites** and choose the Firebase project you created in the previous step. You will need to agree with `database.rules.json` being created, choose `build` as the public directory, and also agree to **Configure as a single-page app** by replying with `y`. 1043 | 1044 | ```sh 1045 | === Project Setup 1046 | 1047 | First, let's associate this project directory with a Firebase project. 1048 | You can create multiple project aliases by running firebase use --add, 1049 | but for now we'll just set up a default project. 1050 | 1051 | ? What Firebase project do you want to associate as default? Example app (example-app-fd690) 1052 | 1053 | === Database Setup 1054 | 1055 | Firebase Realtime Database Rules allow you to define how your data should be 1056 | structured and when your data can be read from and written to. 1057 | 1058 | ? What file should be used for Database Rules? database.rules.json 1059 | ✔ Database Rules for example-app-fd690 have been downloaded to database.rules.json. 1060 | Future modifications to database.rules.json will update Database Rules when you run 1061 | firebase deploy. 1062 | 1063 | === Hosting Setup 1064 | 1065 | Your public directory is the folder (relative to your project directory) that 1066 | will contain Hosting assets to uploaded with firebase deploy. If you 1067 | have a build process for your assets, use your build's output directory. 1068 | 1069 | ? What do you want to use as your public directory? build 1070 | ? Configure as a single-page app (rewrite all urls to /index.html)? Yes 1071 | ✔ Wrote build/index.html 1072 | 1073 | i Writing configuration info to firebase.json... 1074 | i Writing project information to .firebaserc... 1075 | 1076 | ✔ Firebase initialization complete! 1077 | ``` 1078 | 1079 | Now, after you create a production build with `npm run build`, you can deploy it by running `firebase deploy`. 1080 | 1081 | ```sh 1082 | === Deploying to 'example-app-fd690'... 1083 | 1084 | i deploying database, hosting 1085 | ✔ database: rules ready to deploy. 1086 | i hosting: preparing build directory for upload... 1087 | Uploading: [============================== ] 75%✔ hosting: build folder uploaded successfully 1088 | ✔ hosting: 8 files uploaded successfully 1089 | i starting release process (may take several minutes)... 1090 | 1091 | ✔ Deploy complete! 1092 | 1093 | Project Console: https://console.firebase.google.com/project/example-app-fd690/overview 1094 | Hosting URL: https://example-app-fd690.firebaseapp.com 1095 | ``` 1096 | 1097 | For more information see [Add Firebase to your JavaScript Project](https://firebase.google.com/docs/web/setup). 1098 | 1099 | ### GitHub Pages 1100 | 1101 | >Note: this feature is available with `react-scripts@0.2.0` and higher. 1102 | 1103 | #### Step 1: Add `homepage` to `package.json` 1104 | 1105 | **The step below is important!**<br> 1106 | **If you skip it, your app will not deploy correctly.** 1107 | 1108 | Open your `package.json` and add a `homepage` field: 1109 | 1110 | ```js 1111 | "homepage": "https://myusername.github.io/my-app", 1112 | ``` 1113 | 1114 | Create React App uses the `homepage` field to determine the root URL in the built HTML file. 1115 | 1116 | #### Step 2: Install `gh-pages` and add `deploy` to `scripts` in `package.json` 1117 | 1118 | Now, whenever you run `npm run build`, you will see a cheat sheet with instructions on how to deploy to GitHub Pages. 1119 | 1120 | To publish it at [https://myusername.github.io/my-app](https://myusername.github.io/my-app), run: 1121 | 1122 | ```sh 1123 | npm install --save-dev gh-pages 1124 | ``` 1125 | 1126 | Add the following script in your `package.json`: 1127 | 1128 | ```js 1129 | // ... 1130 | "scripts": { 1131 | // ... 1132 | "deploy": "npm run build&&gh-pages -d build" 1133 | } 1134 | ``` 1135 | 1136 | (Note: the lack of whitespace is intentional.) 1137 | 1138 | #### Step 3: Deploy the site by running `npm run deploy` 1139 | 1140 | Then run: 1141 | 1142 | ```sh 1143 | npm run deploy 1144 | ``` 1145 | 1146 | #### Step 4: Ensure your project's settings use `gh-pages` 1147 | 1148 | Finally, make sure **GitHub Pages** option in your GitHub project settings is set to use the `gh-pages` branch: 1149 | 1150 | <img src="http://i.imgur.com/HUjEr9l.png" width="500" alt="gh-pages branch setting"> 1151 | 1152 | #### Step 5: Optionally, configure the domain 1153 | 1154 | You can configure a custom domain with GitHub Pages by adding a `CNAME` file to the `public/` folder. 1155 | 1156 | #### Notes on client-side routing 1157 | 1158 | GitHub Pages doesn't support routers that use the HTML5 `pushState` history API under the hood (for example, React Router using `browserHistory`). This is because when there is a fresh page load for a url like `http://user.github.io/todomvc/todos/42`, where `/todos/42` is a frontend route, the GitHub Pages server returns 404 because it knows nothing of `/todos/42`. If you want to add a router to a project hosted on GitHub Pages, here are a couple of solutions: 1159 | 1160 | * You could switch from using HTML5 history API to routing with hashes. If you use React Router, you can switch to `hashHistory` for this effect, but the URL will be longer and more verbose (for example, `http://user.github.io/todomvc/#/todos/42?_k=yknaj`). [Read more](https://github.com/reactjs/react-router/blob/master/docs/guides/Histories.md#histories) about different history implementations in React Router. 1161 | * Alternatively, you can use a trick to teach GitHub Pages to handle 404 by redirecting to your `index.html` page with a special redirect parameter. You would need to add a `404.html` file with the redirection code to the `build` folder before deploying your project, and you’ll need to add code handling the redirect parameter to `index.html`. You can find a detailed explanation of this technique [in this guide](https://github.com/rafrex/spa-github-pages). 1162 | 1163 | ### Heroku 1164 | 1165 | Use the [Heroku Buildpack for Create React App](https://github.com/mars/create-react-app-buildpack).<br> 1166 | You can find instructions in [Deploying React with Zero Configuration](https://blog.heroku.com/deploying-react-with-zero-configuration). 1167 | 1168 | #### Resolving "Module not found: Error: Cannot resolve 'file' or 'directory'" 1169 | 1170 | Sometimes `npm run build` works locally but fails during deploy via Heroku with an error like this: 1171 | 1172 | ``` 1173 | remote: Failed to create a production build. Reason: 1174 | remote: Module not found: Error: Cannot resolve 'file' or 'directory' 1175 | MyDirectory in /tmp/build_1234/src 1176 | ``` 1177 | 1178 | This means you need to ensure that the lettercase of the file or directory you `import` matches the one you see on your filesystem or on GitHub. 1179 | 1180 | This is important because Linux (the operating system used by Heroku) is case sensitive. So `MyDirectory` and `mydirectory` are two distinct directories and thus, even though the project builds locally, the difference in case breaks the `import` statements on Heroku remotes. 1181 | 1182 | ### Modulus 1183 | 1184 | See the [Modulus blog post](http://blog.modulus.io/deploying-react-apps-on-modulus) on how to deploy your react app to Modulus. 1185 | 1186 | ## Netlify 1187 | 1188 | **To do a manual deploy to Netlify's CDN:** 1189 | 1190 | ```sh 1191 | npm install netlify-cli 1192 | netlify deploy 1193 | ``` 1194 | 1195 | Choose `build` as the path to deploy. 1196 | 1197 | **To setup continuous delivery:** 1198 | 1199 | With this setup Netlify will build and deploy when you push to git or open a pull request: 1200 | 1201 | 1. [Start a new netlify project](https://app.netlify.com/signup) 1202 | 2. Pick your Git hosting service and select your repository 1203 | 3. Click `Build your site` 1204 | 1205 | **Support for client-side routing:** 1206 | 1207 | To support `pushState`, make sure to create a `public/_redirects` file with the following rewrite rules: 1208 | 1209 | ``` 1210 | /* /index.html 200 1211 | ``` 1212 | 1213 | When you build the project, Create React App will place the `public` folder contents into the build output. 1214 | 1215 | ### Now 1216 | 1217 | See [this example](https://github.com/xkawi/create-react-app-now) for a zero-configuration single-command deployment with [now](https://zeit.co/now). 1218 | 1219 | ### S3 and CloudFront 1220 | 1221 | See this [blog post](https://medium.com/@omgwtfmarc/deploying-create-react-app-to-s3-or-cloudfront-48dae4ce0af) on how to deploy your React app to Amazon Web Services [S3](https://aws.amazon.com/s3) and [CloudFront](https://aws.amazon.com/cloudfront/). 1222 | 1223 | ### Surge 1224 | 1225 | Install the Surge CLI if you haven't already by running `npm install -g surge`. Run the `surge` command and log in you or create a new account. You just need to specify the *build* folder and your custom domain, and you are done. 1226 | 1227 | ```sh 1228 | email: email@domain.com 1229 | password: ******** 1230 | project path: /path/to/project/build 1231 | size: 7 files, 1.8 MB 1232 | domain: create-react-app.surge.sh 1233 | upload: [====================] 100%, eta: 0.0s 1234 | propagate on CDN: [====================] 100% 1235 | plan: Free 1236 | users: email@domain.com 1237 | IP Address: X.X.X.X 1238 | 1239 | Success! Project is published and running at create-react-app.surge.sh 1240 | ``` 1241 | 1242 | Note that in order to support routers that use HTML5 `pushState` API, you may want to rename the `index.html` in your build folder to `200.html` before deploying to Surge. This [ensures that every URL falls back to that file](https://surge.sh/help/adding-a-200-page-for-client-side-routing). 1243 | 1244 | ## Troubleshooting 1245 | 1246 | ### `npm test` hangs on macOS Sierra 1247 | 1248 | If you run `npm test` and the console gets stuck after printing `react-scripts test --env=jsdom` to the console there might be a problem with your [Watchman](https://facebook.github.io/watchman/) installation as described in [facebookincubator/create-react-app#713](https://github.com/facebookincubator/create-react-app/issues/713). 1249 | 1250 | We recommend deleting `node_modules` in your project and running `npm install` (or `yarn` if you use it) first. If it doesn't help, you can try one of the numerous workarounds mentioned in these issues: 1251 | 1252 | * [facebook/jest#1767](https://github.com/facebook/jest/issues/1767) 1253 | * [facebook/watchman#358](https://github.com/facebook/watchman/issues/358) 1254 | * [ember-cli/ember-cli#6259](https://github.com/ember-cli/ember-cli/issues/6259) 1255 | 1256 | It is reported that installing Watchman 4.7.0 or newer fixes the issue. If you use [Homebrew](http://brew.sh/), you can run these commands to update it: 1257 | 1258 | ``` 1259 | watchman shutdown-server 1260 | brew update 1261 | brew reinstall watchman 1262 | ``` 1263 | 1264 | You can find [other installation methods](https://facebook.github.io/watchman/docs/install.html#build-install) on the Watchman documentation page. 1265 | 1266 | If this still doesn't help, try running `launchctl unload -F ~/Library/LaunchAgents/com.github.facebook.watchman.plist`. 1267 | 1268 | There are also reports that *uninstalling* Watchman fixes the issue. So if nothing else helps, remove it from your system and try again. 1269 | 1270 | ### `npm run build` silently fails 1271 | 1272 | It is reported that `npm run build` can fail on machines with no swap space, which is common in cloud environments. If [the symptoms are matching](https://github.com/facebookincubator/create-react-app/issues/1133#issuecomment-264612171), consider adding some swap space to the machine you’re building on, or build the project locally. 1273 | 1274 | ### `npm run build` fails on Heroku 1275 | 1276 | This may be a problem with case sensitive filenames. 1277 | Please refer to [this section](#resolving-module-not-found-error-cannot-resolve-file-or-directory). 1278 | 1279 | ## Something Missing? 1280 | 1281 | If you have ideas for more “How To” recipes that should be on this page, [let us know](https://github.com/facebookincubator/create-react-app/issues) or [contribute some!](https://github.com/facebookincubator/create-react-app/edit/master/packages/react-scripts/template/README.md) 1282 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This repo is now deprecated. In the time since it created [TypeScript support](https://facebook.github.io/create-react-app/docs/adding-typescript) is now a default feature of [Create React App](https://facebook.github.io/create-react-app/), [Next.JS](https://nextjs.org) and [Razzle](https://github.com/jaredpalmer/razzle). 2 | 3 | This means you can get started with: 4 | 5 | ```sh 6 | # Creates an app called my-app 7 | npx create-react-app my-app --typescript 8 | 9 | cd my-app 10 | 11 | # Adds the type definitions 12 | npm install --save typescript @types/node @types/react @types/react-dom @types/jest 13 | 14 | echo "Good to go :tada:" 15 | ``` 16 | 17 | This repo offers some exmples on how to take that project into production and handle testing and state. However, you can 18 | also use the official documentation in the Create React App website for that. 19 | 20 | If you'd like to know more about how to effectively do React with TypeScript, we recommend looking at the following: 21 | 22 | - [React+TypeScript Cheatsheets](https://github.com/typescript-cheatsheets/react-typescript-cheatsheet#reacttypescript-cheatsheets) 23 | - [React & Redux in TypeScript - Static Typing Guide](https://github.com/piotrwitek/react-redux-typescript-guide#react--redux-in-typescript---static-typing-guide) 24 | - [Use TypeScript to develop React applications](https://egghead.io/courses/use-typescript-to-develop-react-applications) 25 | - [Ultimate React Component Patterns with Typescript 2.8](https://levelup.gitconnected.com/ultimate-react-component-patterns-with-typescript-2-8-82990c516935) 26 | 27 | 28 | Below is the original README for this sample. 29 | 30 | --- 31 | 32 | # TypeScript React Starter 33 | 34 | This quick start guide will teach you how to wire up TypeScript with [React](http://facebook.github.io/react/). 35 | By the end, you'll have 36 | 37 | * a project with React and TypeScript 38 | * linting with [TSLint](https://github.com/palantir/tslint) 39 | * testing with [Jest](https://facebook.github.io/jest/) and [Enzyme](http://airbnb.io/enzyme/), and 40 | * state management with [Redux](https://github.com/reactjs/react-redux) 41 | 42 | We'll use the [create-react-app](https://github.com/facebookincubator/create-react-app) tool to quickly get set up. 43 | 44 | We assume that you're already using [Node.js](https://nodejs.org/) with [npm](https://www.npmjs.com/). 45 | You may also want to get a sense of [the basics with React](https://facebook.github.io/react/docs/hello-world.html). 46 | 47 | # Install create-react-app 48 | 49 | We're going to use the create-react-app because it sets some useful tools and canonical defaults for React projects. 50 | This is just a command-line utility to scaffold out new React projects. 51 | 52 | ```shell 53 | npm install -g create-react-app 54 | ``` 55 | 56 | # Create our new project 57 | 58 | We'll create a new project called `my-app`: 59 | 60 | ```shell 61 | create-react-app my-app --scripts-version=react-scripts-ts 62 | ``` 63 | 64 | [react-scripts-ts](https://www.npmjs.com/package/react-scripts-ts) is a set of adjustments to take the standard create-react-app project pipeline and bring TypeScript into the mix. 65 | 66 | At this point, your project layout should look like the following: 67 | 68 | ```text 69 | my-app/ 70 | ├─ .gitignore 71 | ├─ images.d.ts 72 | ├─ node_modules/ 73 | ├─ public/ 74 | ├─ src/ 75 | │ └─ ... 76 | ├─ package.json 77 | ├─ tsconfig.json 78 | ├─ tsconfig.prod.json 79 | ├─ tsconfig.test.json 80 | └─ tslint.json 81 | ``` 82 | 83 | Of note: 84 | 85 | * `tsconfig.json` contains TypeScript-specific options for our project. 86 | * We also have a `tsconfig.prod.json` and a `tsconfig.test.json` in case we want to make any tweaks to our production builds, or our test builds. 87 | * `tslint.json` stores the settings that our linter, [TSLint](https://github.com/palantir/tslint), will use. 88 | * `package.json` contains our dependencies, as well as some shortcuts for commands we'd like to run for testing, previewing, and deploying our app. 89 | * `public` contains static assets like the HTML page we're planning to deploy to, or images. You can delete any file in this folder apart from `index.html`. 90 | * `src` contains our TypeScript and CSS code. `index.tsx` is the entry-point for our file, and is mandatory. 91 | * `images.d.ts` will tell TypeScript that certain types of image files can be `import`-ed, which create-react-app supports. 92 | 93 | # Setting up source control 94 | 95 | Our testing tool, Jest, expects some form of source control (such as Git or Mercurial) to be present. 96 | For it to run correctly, we'll need to initialize a git repository. 97 | 98 | ```sh 99 | git init 100 | git add . 101 | git commit -m "Initial commit." 102 | ``` 103 | 104 | > Note: if you've cloned this repository, you won't have to run the above at all. 105 | 106 | # Overriding defaults 107 | 108 | The TSLint configuration that react-scripts-ts sets us up with is a bit overzealous. 109 | Let's fix that up. 110 | 111 | ```diff 112 | { 113 | - "extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"], 114 | + "extends": [], 115 | + "defaultSeverity": "warning", 116 | "linterOptions": { 117 | "exclude": [ 118 | "config/**/*.js", 119 | "node_modules/**/*.ts" 120 | ] 121 | } 122 | } 123 | ``` 124 | 125 | [Configuring TSLint](https://palantir.github.io/tslint/usage/configuration/) is out of the scope of this starter, but you should feel free to experiment with something that works for you. 126 | 127 | # Running the project 128 | 129 | Running the project is as simple as running 130 | 131 | ```sh 132 | npm run start 133 | ``` 134 | 135 | This runs the `start` script specified in our `package.json`, and will spawn off a server which reloads the page as we save our files. 136 | Typically the server runs at `http://localhost:3000`, but should be automatically opened for you. 137 | 138 | This tightens the iteration loop by allowing us to quickly preview changes. 139 | 140 | # Testing the project 141 | 142 | Testing is also just a command away: 143 | 144 | ```sh 145 | npm run test 146 | ``` 147 | 148 | This command runs Jest, an incredibly useful testing utility, against all files whose extensions end in `.test.ts` or `.spec.ts`. 149 | Like with the `npm run start` command, Jest will automatically run as soon as it detects changes. 150 | If you'd like, you can run `npm run start` and `npm run test` side by side so that you can preview changes and test them simultaneously. 151 | 152 | # Creating a production build 153 | 154 | When running the project with `npm run start`, we didn't end up with an optimized build. 155 | Typically, we want the code we ship to users to be as fast and small as possible. 156 | Certain optimizations like minification can accomplish this, but often take more time. 157 | We call builds like this "production" builds (as opposed to development builds). 158 | 159 | To run a production build, just run 160 | 161 | ```sh 162 | npm run build 163 | ``` 164 | 165 | This will create an optimized JS and CSS build in `./build/static/js` and `./build/static/css` respectively. 166 | 167 | You won't need to run a production build most of the time, 168 | but it is useful if you need to measure things like the final size of your app. 169 | 170 | # Creating a component 171 | 172 | We're going to write a `Hello` component. 173 | The component will take the name of whoever we want to greet (which we'll call `name`), and optionally, the number of exclamation marks to trail with (`enthusiasmLevel`). 174 | 175 | When we write something like `<Hello name="Daniel" enthusiasmLevel={3} />`, the component should render to something like `<div>Hello Daniel!!!</div>`. 176 | If `enthusiasmLevel` isn't specified, the component should default to showing one exclamation mark. 177 | If `enthusiasmLevel` is `0` or negative, it should throw an error. 178 | 179 | We'll write a `Hello.tsx`: 180 | 181 | ```ts 182 | // src/components/Hello.tsx 183 | 184 | import * as React from 'react'; 185 | 186 | export interface Props { 187 | name: string; 188 | enthusiasmLevel?: number; 189 | } 190 | 191 | function Hello({ name, enthusiasmLevel = 1 }: Props) { 192 | if (enthusiasmLevel <= 0) { 193 | throw new Error('You could be a little more enthusiastic. :D'); 194 | } 195 | 196 | return ( 197 | <div className="hello"> 198 | <div className="greeting"> 199 | Hello {name + getExclamationMarks(enthusiasmLevel)} 200 | </div> 201 | </div> 202 | ); 203 | } 204 | 205 | export default Hello; 206 | 207 | // helpers 208 | 209 | function getExclamationMarks(numChars: number) { 210 | return Array(numChars + 1).join('!'); 211 | } 212 | ``` 213 | 214 | Notice that we defined a type named `Props` that specifies the properties our component will take. 215 | `name` is a required `string`, and `enthusiasmLevel` is an optional `number` (which you can tell from the `?` that we wrote out after its name). 216 | 217 | We also wrote `Hello` as a stateless function component (an SFC). 218 | To be specific, `Hello` is a function that takes a `Props` object, and picks apart (or "destructures") all the properties that it will be passed. 219 | If `enthusiasmLevel` isn't given in our `Props` object, it will default to `1`. 220 | 221 | Writing functions is one of two primary [ways React allows us to make components]((https://facebook.github.io/react/docs/components-and-props.html#functional-and-class-components)). 222 | If we wanted, we *could* have written it out as a class as follows: 223 | 224 | ```ts 225 | class Hello extends React.Component<Props, object> { 226 | render() { 227 | const { name, enthusiasmLevel = 1 } = this.props; 228 | 229 | if (enthusiasmLevel <= 0) { 230 | throw new Error('You could be a little more enthusiastic. :D'); 231 | } 232 | 233 | return ( 234 | <div className="hello"> 235 | <div className="greeting"> 236 | Hello {name + getExclamationMarks(enthusiasmLevel)} 237 | </div> 238 | </div> 239 | ); 240 | } 241 | } 242 | ``` 243 | 244 | Classes are useful [when our component instances have some state or need to handle lifecycle hooks](https://facebook.github.io/react/docs/state-and-lifecycle.html). 245 | But we don't really need to think about state in this specific example - in fact, we specified it as `object` in `React.Component<Props, object>`, so writing an SFC makes more sense here, but it's important to know how to write a class component. 246 | 247 | Notice that the class extends `React.Component<Props, object>`. 248 | The TypeScript-specific bit here are the type arguments we're passing to `React.Component`: `Props` and `object`. 249 | Here, `Props` is the type of our class's `this.props`, and `object` is the type of `this.state`. 250 | We'll return to component state in a bit. 251 | 252 | Now that we've written our component, let's dive into `index.tsx` and replace our render of `<App />` with a render of `<Hello ... />`. 253 | 254 | First we'll import it at the top of the file: 255 | 256 | ```ts 257 | import Hello from './components/Hello'; 258 | ``` 259 | 260 | and then change up our `render` call: 261 | 262 | ```ts 263 | ReactDOM.render( 264 | <Hello name="TypeScript" enthusiasmLevel={10} />, 265 | document.getElementById('root') as HTMLElement 266 | ); 267 | ``` 268 | 269 | ## Type assertions 270 | 271 | One thing we'll point out in this section is the line `document.getElementById('root') as HTMLElement`. 272 | This syntax is called a *type assertion*, sometimes also called a *cast*. 273 | This is a useful way of telling TypeScript what the real type of an expression is when you know better than the type checker. 274 | 275 | The reason we need to do so in this case is that `getElementById`'s return type is `HTMLElement | null`. 276 | Put simply, `getElementById` returns `null` when it can't find an element with a given `id`. 277 | We're assuming that `getElementById` will actually succeed, so we need to convince TypeScript of that using the `as` syntax. 278 | 279 | TypeScript also has a trailing "bang" syntax (`!`), which removes `null` and `undefined` from the prior expression. 280 | So we *could* have written `document.getElementById('root')!`, but in this case we wanted to be a bit more explicit. 281 | 282 | ## Stateful components 283 | 284 | We mentioned earlier that our component didn't need state. 285 | What if we wanted to be able to update our components based on user interaction over time? 286 | At that point, state becomes more important. 287 | 288 | Deeply understanding best practices around component state in React are out of the scope of this starter, but let's quickly peek at a *stateful* version of our `Hello` component to see what adding state looks like. 289 | We're going to render two `<button>`s which update the number of exclamation marks that a `Hello` component displays. 290 | 291 | To do that, we're going to 292 | 293 | 1. Define a type for our state (i.e. `this.state`) 294 | 1. Initialize `this.state` based on the props we're given in our constructor. 295 | 1. Create two event handlers for our buttons (`onIncrement` and `onDecrement`). 296 | 297 | ```ts 298 | // src/components/StatefulHello.tsx 299 | 300 | import * as React from "react"; 301 | 302 | export interface Props { 303 | name: string; 304 | enthusiasmLevel?: number; 305 | } 306 | 307 | interface State { 308 | currentEnthusiasm: number; 309 | } 310 | 311 | class Hello extends React.Component<Props, State> { 312 | constructor(props: Props) { 313 | super(props); 314 | this.state = { currentEnthusiasm: props.enthusiasmLevel || 1 }; 315 | } 316 | 317 | onIncrement = () => this.updateEnthusiasm(this.state.currentEnthusiasm + 1); 318 | onDecrement = () => this.updateEnthusiasm(this.state.currentEnthusiasm - 1); 319 | 320 | render() { 321 | const { name } = this.props; 322 | 323 | if (this.state.currentEnthusiasm <= 0) { 324 | throw new Error('You could be a little more enthusiastic. :D'); 325 | } 326 | 327 | return ( 328 | <div className="hello"> 329 | <div className="greeting"> 330 | Hello {name + getExclamationMarks(this.state.currentEnthusiasm)} 331 | </div> 332 | <button onClick={this.onDecrement}>-</button> 333 | <button onClick={this.onIncrement}>+</button> 334 | </div> 335 | ); 336 | } 337 | 338 | updateEnthusiasm(currentEnthusiasm: number) { 339 | this.setState({ currentEnthusiasm }); 340 | } 341 | } 342 | 343 | export default Hello; 344 | 345 | function getExclamationMarks(numChars: number) { 346 | return Array(numChars + 1).join('!'); 347 | } 348 | ``` 349 | 350 | Notice: 351 | 352 | 1. Much like with `Props`, we had to define a new type for our state: `State`. 353 | 1. To update state in React, we use `this.setState` - we don't set it directly except in the constructor. `setState` only takes the properties we're interested in updating and our component will re-render as appropriate. 354 | 1. We're using class property initializers with arrow functions (e.g. `onIncrement = () => ...`). 355 | * Declaring these as arrow functions avoids issues with orphaned uses of `this`. 356 | * Setting them as instance properties creates them only once - a common mistake is to initialize them in the `render` method which allocates closures one every call to `render`. 357 | 358 | We won't use this stateful component any further in this starter. 359 | Stateful components are great for creating components that focus solely on presenting content (as opposed to handling core application state). 360 | In some contexts, it can be used for handling your entire application's state, with one central component passing down functions that can call `setState` appropriately; however, for much larger applications, a dedicated state manager might be preferable (as we'll discuss below). 361 | 362 | # Adding style 😎 363 | 364 | Styling a component with our setup is easy. 365 | To style our `Hello` component, we can create a CSS file at `src/components/Hello.css`. 366 | 367 | ```css 368 | .hello { 369 | text-align: center; 370 | margin: 20px; 371 | font-size: 48px; 372 | font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 373 | } 374 | 375 | .hello button { 376 | margin-left: 25px; 377 | margin-right: 25px; 378 | font-size: 40px; 379 | min-width: 50px; 380 | } 381 | ``` 382 | 383 | The tools that create-react-app uses (namely, Webpack and various loaders) allow us to just import the stylesheets we're interested in. 384 | When our build runs, any imported `.css` files will be concatenated into an output file. 385 | So in `src/components/Hello.tsx`, we'll add the following import. 386 | 387 | ```ts 388 | import './Hello.css'; 389 | ``` 390 | 391 | # Writing tests with Jest 392 | 393 | We had a certain set of assumptions about our `Hello` component. 394 | Let's reiterate what they were: 395 | 396 | > * When we write something like `<Hello name="Daniel" enthusiasmLevel={3} />`, the component should render to something like `<div>Hello Daniel!!!</div>`. 397 | > * If `enthusiasmLevel` isn't specified, the component should default to showing one exclamation mark. 398 | > * If `enthusiasmLevel` is `0` or negative, it should throw an error. 399 | 400 | We can use these requirements to write a few tests for our components. 401 | 402 | But first, let's install Enzyme. 403 | [Enzyme](http://airbnb.io/enzyme/) is a common tool in the React ecosystem that makes it easier to write tests for how components will behave. 404 | By default, our application includes a library called jsdom to allow us to simulate the DOM and test its runtime behavior without a browser. 405 | Enzyme is similar, but builds on jsdom and makes it easier to make certain queries about our components. 406 | 407 | Let's install it as a development-time dependency. 408 | 409 | ```sh 410 | npm install -D enzyme @types/enzyme enzyme-adapter-react-16 @types/enzyme-adapter-react-16 react-test-renderer 411 | ``` 412 | 413 | Notice we installed packages `enzyme` as well as `@types/enzyme`. 414 | The `enzyme` package refers to the package containing JavaScript code that actually gets run, while `@types/enzyme` is a package that contains declaration files (`.d.ts` files) so that TypeScript can understand how you can use Enzyme. 415 | You can learn more about `@types` packages [here](https://www.typescriptlang.org/docs/handbook/declaration-files/consumption.html). 416 | 417 | We also had to install `enzyme-adapter-react-16 and react-test-renderer`. 418 | This is something `enzyme` expects to be installed. 419 | 420 | Before writing the first test, we have to configure Enzyme to use an adapter for React 16. 421 | We'll create a file called `src/setupTests.ts` that is automatically loaded when running tests: 422 | 423 | ```ts 424 | import * as enzyme from 'enzyme'; 425 | import * as Adapter from 'enzyme-adapter-react-16'; 426 | 427 | enzyme.configure({ adapter: new Adapter() }); 428 | ``` 429 | 430 | Now that we've got Enzyme set up, let's start writing our test! 431 | Let's create a file named `src/components/Hello.test.tsx`, adjacent to our `Hello.tsx` file from earlier. 432 | 433 | ```ts 434 | // src/components/Hello.test.tsx 435 | 436 | import * as React from 'react'; 437 | import * as enzyme from 'enzyme'; 438 | import Hello from './Hello'; 439 | 440 | it('renders the correct text when no enthusiasm level is given', () => { 441 | const hello = enzyme.shallow(<Hello name='Daniel' />); 442 | expect(hello.find(".greeting").text()).toEqual('Hello Daniel!') 443 | }); 444 | 445 | it('renders the correct text with an explicit enthusiasm of 1', () => { 446 | const hello = enzyme.shallow(<Hello name='Daniel' enthusiasmLevel={1}/>); 447 | expect(hello.find(".greeting").text()).toEqual('Hello Daniel!') 448 | }); 449 | 450 | it('renders the correct text with an explicit enthusiasm level of 5', () => { 451 | const hello = enzyme.shallow(<Hello name='Daniel' enthusiasmLevel={5} />); 452 | expect(hello.find(".greeting").text()).toEqual('Hello Daniel!!!!!'); 453 | }); 454 | 455 | it('throws when the enthusiasm level is 0', () => { 456 | expect(() => { 457 | enzyme.shallow(<Hello name='Daniel' enthusiasmLevel={0} />); 458 | }).toThrow(); 459 | }); 460 | 461 | it('throws when the enthusiasm level is negative', () => { 462 | expect(() => { 463 | enzyme.shallow(<Hello name='Daniel' enthusiasmLevel={-1} />); 464 | }).toThrow(); 465 | }); 466 | ``` 467 | 468 | These tests are extremely basic, but you should be able to get the gist of things. 469 | 470 | # Adding state management 471 | 472 | At this point, if all you're using React for is fetching data once and displaying it, you can consider yourself done. 473 | But if you're developing an app that's more interactive, then you may need to add state management. 474 | 475 | ## State management in general 476 | 477 | On its own, React is a useful library for creating composable views. 478 | However, React doesn't prescribe any specific way of synchronizing data throughout your application. 479 | As far as a React component is concerned, data flows down through its children through the props you specify on each element. 480 | Some of those props might be functions that update the state one way or another, but how that happens is an open question. 481 | 482 | Because React on its own does not focus on application state management, the React community uses libraries like Redux and MobX. 483 | 484 | [Redux](http://redux.js.org) relies on synchronizing data through a centralized and immutable store of data, and updates to that data will trigger a re-render of our application. 485 | State is updated in an immutable fashion by sending explicit action messages which must be handled by functions called reducers. 486 | Because of the explicit nature, it is often easier to reason about how an action will affect the state of your program. 487 | 488 | [MobX](https://mobx.js.org/) relies on functional reactive patterns where state is wrapped through observables and passed through as props. 489 | Keeping state fully synchronized for any observers is done by simply marking state as observable. 490 | As a nice bonus, the library is already written in TypeScript. 491 | 492 | There are various merits and tradeoffs to both. 493 | Generally Redux tends to see more widespread usage, so for the purposes of this tutorial, we'll focus on adding Redux; 494 | however, you should feel encouraged to explore both. 495 | 496 | The following section may have a steep learning curve. 497 | We strongly suggest you [familiarize yourself with Redux through its documentation](http://redux.js.org/). 498 | 499 | ## Setting the stage for actions 500 | 501 | It doesn't make sense to add Redux unless the state of our application changes. 502 | We need a source of actions that will trigger changes to take place. 503 | This can be a timer, or something in the UI like a button. 504 | 505 | For our purposes, we're going to add two buttons to control the enthusiasm level for our `Hello` component. 506 | 507 | ## Installing Redux 508 | 509 | To add Redux, we'll first install `redux` and `react-redux`, as well as their types, as a dependency. 510 | 511 | ```sh 512 | npm install -S redux react-redux @types/react-redux 513 | ``` 514 | 515 | In this case we didn't need to install `@types/redux` because Redux already comes with its own definition files (`.d.ts` files). 516 | 517 | ## Defining our app's state 518 | 519 | We need to define the shape of the state which Redux will store. 520 | For this, we can create a file called `src/types/index.tsx` which will contain definitions for types that we might use throughout the program. 521 | 522 | ```ts 523 | // src/types/index.tsx 524 | 525 | export interface StoreState { 526 | languageName: string; 527 | enthusiasmLevel: number; 528 | } 529 | ``` 530 | 531 | Our intention is that `languageName` will be the programming language this app was written in (i.e. TypeScript or JavaScript) and `enthusiasmLevel` will vary. 532 | When we write our first container, we'll understand why we intentionally made our state slightly different from our props. 533 | 534 | ## Adding actions 535 | 536 | Let's start off by creating a set of message types that our app can respond to in `src/constants/index.tsx`. 537 | 538 | ```ts 539 | // src/constants/index.tsx 540 | 541 | export const INCREMENT_ENTHUSIASM = 'INCREMENT_ENTHUSIASM'; 542 | export type INCREMENT_ENTHUSIASM = typeof INCREMENT_ENTHUSIASM; 543 | 544 | 545 | export const DECREMENT_ENTHUSIASM = 'DECREMENT_ENTHUSIASM'; 546 | export type DECREMENT_ENTHUSIASM = typeof DECREMENT_ENTHUSIASM; 547 | ``` 548 | 549 | This `const`/`type` pattern allows us to use TypeScript's string literal types in an easily accessible and refactorable way. 550 | 551 | Next, we'll create a set of actions and functions that can create these actions in `src/actions/index.tsx`. 552 | 553 | ```ts 554 | import * as constants from '../constants'; 555 | 556 | export interface IncrementEnthusiasm { 557 | type: constants.INCREMENT_ENTHUSIASM; 558 | } 559 | 560 | export interface DecrementEnthusiasm { 561 | type: constants.DECREMENT_ENTHUSIASM; 562 | } 563 | 564 | export type EnthusiasmAction = IncrementEnthusiasm | DecrementEnthusiasm; 565 | 566 | export function incrementEnthusiasm(): IncrementEnthusiasm { 567 | return { 568 | type: constants.INCREMENT_ENTHUSIASM 569 | } 570 | } 571 | 572 | export function decrementEnthusiasm(): DecrementEnthusiasm { 573 | return { 574 | type: constants.DECREMENT_ENTHUSIASM 575 | } 576 | } 577 | ``` 578 | 579 | We've created two types that describe what increment actions and decrement actions should look like. 580 | We also created a type (`EnthusiasmAction`) to describe cases where an action could be an increment or a decrement. 581 | Finally, we made two functions that actually manufacture the actions which we can use instead of writing out bulky object literals. 582 | 583 | There's clearly boilerplate here, so you should feel free to look into libraries like [redux-actions](https://www.npmjs.com/package/redux-actions) once you've got the hang of things. 584 | 585 | ## Adding a reducer 586 | 587 | We're ready to write our first reducer! 588 | Reducers are just functions that generate changes by creating modified copies of our application's state, but that have *no side effects*. 589 | In other words, they're what we call *[pure functions](https://en.wikipedia.org/wiki/Pure_function)*. 590 | 591 | Our reducer will go under `src/reducers/index.tsx`. 592 | Its function will be to ensure that increments raise the enthusiasm level by 1, and that decrements reduce the enthusiasm level by 1, but that the level never falls below 1. 593 | 594 | ```ts 595 | // src/reducers/index.tsx 596 | 597 | import { EnthusiasmAction } from '../actions'; 598 | import { StoreState } from '../types/index'; 599 | import { INCREMENT_ENTHUSIASM, DECREMENT_ENTHUSIASM } from '../constants/index'; 600 | 601 | export function enthusiasm(state: StoreState, action: EnthusiasmAction): StoreState { 602 | switch (action.type) { 603 | case INCREMENT_ENTHUSIASM: 604 | return { ...state, enthusiasmLevel: state.enthusiasmLevel + 1 }; 605 | case DECREMENT_ENTHUSIASM: 606 | return { ...state, enthusiasmLevel: Math.max(1, state.enthusiasmLevel - 1) }; 607 | } 608 | return state; 609 | } 610 | ``` 611 | 612 | Notice that we're using the *object spread* (`...state`) which allows us to create a shallow copy of our state, while replacing the `enthusiasmLevel`. 613 | It's important that the `enthusiasmLevel` property come last, since otherwise it would be overridden by the property in our old state. 614 | 615 | You may want to write a few tests for your reducer. 616 | Since reducers are pure functions, they can be passed arbitrary data. 617 | For every input, reducers can be tested by checking their newly produced state. 618 | Consider looking into Jest's [toEqual](https://facebook.github.io/jest/docs/expect.html#toequalvalue) method to accomplish this. 619 | 620 | ## Making a container 621 | 622 | When writing with Redux, we will often write components as well as containers. 623 | Components are often data-agnostic, and work mostly at a presentational level. 624 | *Containers* typically wrap components and feed them any data that is necessary to display and modify state. 625 | You can read more about this concept on [Dan Abramov's article *Presentational and Container Components*](https://medium.com/@dan_abramov/smart-and-dumb-components-7ca2f9a7c7d0). 626 | 627 | First let's update `src/components/Hello.tsx` so that it can modify state. 628 | We'll add two optional callback properties to `Props` named `onIncrement` and `onDecrement`: 629 | 630 | ```ts 631 | export interface Props { 632 | name: string; 633 | enthusiasmLevel?: number; 634 | onIncrement?: () => void; 635 | onDecrement?: () => void; 636 | } 637 | ``` 638 | 639 | Then we'll bind those callbacks to two new buttons that we'll add into our component. 640 | 641 | ```ts 642 | function Hello({ name, enthusiasmLevel = 1, onIncrement, onDecrement }: Props) { 643 | if (enthusiasmLevel <= 0) { 644 | throw new Error('You could be a little more enthusiastic. :D'); 645 | } 646 | 647 | return ( 648 | <div className="hello"> 649 | <div className="greeting"> 650 | Hello {name + getExclamationMarks(enthusiasmLevel)} 651 | </div> 652 | <div> 653 | <button onClick={onDecrement}>-</button> 654 | <button onClick={onIncrement}>+</button> 655 | </div> 656 | </div> 657 | ); 658 | } 659 | ``` 660 | 661 | In general, it'd be a good idea to write a few tests for `onIncrement` and `onDecrement` being triggered when their respective buttons are clicked. 662 | Give it a shot to get the hang of writing tests for your components. 663 | 664 | Now that our component is updated, we're ready to wrap it into a container. 665 | Let's create a file named `src/containers/Hello.tsx` and start off with the following imports. 666 | 667 | ```ts 668 | import Hello from '../components/Hello'; 669 | import * as actions from '../actions/'; 670 | import { StoreState } from '../types/index'; 671 | import { connect, Dispatch } from 'react-redux'; 672 | ``` 673 | 674 | The real two key pieces here are the original `Hello` component as well as the `connect` function from react-redux. 675 | `connect` will be able to actually take our original `Hello` component and turn it into a container using two functions: 676 | 677 | * `mapStateToProps` which massages the data from the current store to part of the shape that our component needs. 678 | * `mapDispatchToProps` which creates callback props to pump actions to our store using a given `dispatch` function. 679 | 680 | If we recall, our application state consists of two properties: `languageName` and `enthusiasmLevel`. 681 | Our `Hello` component, on the other hand, expected a `name` and an `enthusiasmLevel`. 682 | `mapStateToProps` will get the relevant data from the store, and adjust it if necessary, for our component's props. 683 | Let's go ahead and write that. 684 | 685 | ```ts 686 | export function mapStateToProps({ enthusiasmLevel, languageName }: StoreState) { 687 | return { 688 | enthusiasmLevel, 689 | name: languageName, 690 | } 691 | } 692 | ``` 693 | 694 | Note that `mapStateToProps` only creates 2 out of 4 of the properties a `Hello` component expects. 695 | Namely, we still want to pass in the `onIncrement` and `onDecrement` callbacks. 696 | `mapDispatchToProps` is a function that takes a dispatcher function. 697 | This dispatcher function can pass actions into our store to make updates, so we can create a pair of callbacks that will call the dispatcher as necessary. 698 | 699 | ```ts 700 | export function mapDispatchToProps(dispatch: Dispatch<actions.EnthusiasmAction>) { 701 | return { 702 | onIncrement: () => dispatch(actions.incrementEnthusiasm()), 703 | onDecrement: () => dispatch(actions.decrementEnthusiasm()), 704 | } 705 | } 706 | ``` 707 | 708 | Finally, we're ready to call `connect`. 709 | `connect` will first take `mapStateToProps` and `mapDispatchToProps`, and then return another function that we can use to wrap our component. 710 | Our resulting container is defined with the following line of code: 711 | 712 | ```ts 713 | export default connect(mapStateToProps, mapDispatchToProps)(Hello); 714 | ``` 715 | 716 | When we're finished, our file should look like this: 717 | 718 | ```ts 719 | // src/containers/Hello.tsx 720 | 721 | import Hello from '../components/Hello'; 722 | import * as actions from '../actions/'; 723 | import { StoreState } from '../types/index'; 724 | import { connect, Dispatch } from 'react-redux'; 725 | 726 | export function mapStateToProps({ enthusiasmLevel, languageName }: StoreState) { 727 | return { 728 | enthusiasmLevel, 729 | name: languageName, 730 | } 731 | } 732 | 733 | export function mapDispatchToProps(dispatch: Dispatch<actions.EnthusiasmAction>) { 734 | return { 735 | onIncrement: () => dispatch(actions.incrementEnthusiasm()), 736 | onDecrement: () => dispatch(actions.decrementEnthusiasm()), 737 | } 738 | } 739 | 740 | export default connect(mapStateToProps, mapDispatchToProps)(Hello); 741 | ``` 742 | 743 | ## Creating a store 744 | 745 | Let's go back to `src/index.tsx`. 746 | To put this all together, we need to create a store with an initial state, and set it up with all of our reducers. 747 | 748 | ```ts 749 | import { createStore } from 'redux'; 750 | import { enthusiasm } from './reducers/index'; 751 | import { StoreState } from './types/index'; 752 | 753 | const store = createStore<StoreState>(enthusiasm, { 754 | enthusiasmLevel: 1, 755 | languageName: 'TypeScript', 756 | }); 757 | ``` 758 | 759 | `store` is, as you might've guessed, our central store for our application's global state. 760 | 761 | Next, we're going to swap our use of `./src/components/Hello` with `./src/containers/Hello` and use react-redux's `Provider` to wire up our props with our container. 762 | We'll import each: 763 | 764 | ```ts 765 | import Hello from './containers/Hello'; 766 | import { Provider } from 'react-redux'; 767 | ``` 768 | 769 | and pass our `store` through to the `Provider`'s attributes: 770 | 771 | ```ts 772 | ReactDOM.render( 773 | <Provider store={store}> 774 | <Hello /> 775 | </Provider>, 776 | document.getElementById('root') as HTMLElement 777 | ); 778 | ``` 779 | 780 | Notice that `Hello` no longer needs props, since we used our `connect` function to adapt our application's state for our wrapped `Hello` component's props. 781 | 782 | # Ejecting 783 | 784 | If at any point, you feel like there are certain customizations that the create-react-app setup has made difficult, you can always opt-out and get the various configuration options you need. 785 | For example, if you'd like to add a Webpack plugin, it might be necessary to take advantage of the "eject" functionality that create-react-app provides. 786 | 787 | Simply run 788 | 789 | ```sh 790 | npm run eject 791 | ``` 792 | 793 | and you should be good to go! 794 | 795 | As a heads up, you may want to commit all your work before running an eject. 796 | You cannot undo an eject command, so opting out is permanent unless you can recover from a commit prior to running an eject. 797 | 798 | # Next steps 799 | 800 | create-react-app comes with a lot of great stuff. 801 | Much of it is documented in the default `README.md` that was generated for our project, so give that a quick read. 802 | 803 | If you still want to learn more about Redux, you can [check out the official website](http://redux.js.org/) for documentation. 804 | The same goes [for MobX](https://mobx.js.org/). 805 | 806 | If you want to eject at some point, you may need to know a little bit more about Webpack. 807 | You can check out our [React & Webpack walkthrough here](https://www.typescriptlang.org/docs/handbook/react-&-webpack.html). 808 | 809 | At some point you might need routing. 810 | There are several solutions, but [react-router](https://github.com/ReactTraining/react-router) is probably the most popular for Redux projects, and is often used in conjunction with [react-router-redux](https://github.com/reactjs/react-router-redux). 811 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-typescript-tutorial", 3 | "version": "0.1.0", 4 | "private": true, 5 | "devDependencies": { 6 | "react-addons-test-utils": "^15.4.2", 7 | "react-scripts-ts": "1.0.6" 8 | }, 9 | "dependencies": { 10 | "@types/enzyme": "^2.7.2", 11 | "@types/jest": "^18.1.1", 12 | "@types/node": "^7.0.5", 13 | "@types/react": "^15.6.6", 14 | "@types/react-dom": "^0.14.22", 15 | "@types/react-redux": "^4.4.36", 16 | "enzyme": "^2.7.1", 17 | "react": "^15.4.2", 18 | "react-dom": "^15.4.2", 19 | "react-redux": "^5.0.2", 20 | "redux": "^3.6.0" 21 | }, 22 | "scripts": { 23 | "start": "react-scripts-ts start", 24 | "build": "react-scripts-ts build", 25 | "test": "react-scripts-ts test --env=jsdom", 26 | "eject": "react-scripts-ts eject" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/TypeScript-React-Starter/19c71f2c6a2b874b1b2bb28a8526b19185b8eece/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | <!doctype html> 2 | <html lang="en"> 3 | <head> 4 | <meta charset="utf-8"> 5 | <meta name="viewport" content="width=device-width, initial-scale=1"> 6 | <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico"> 7 | <!-- 8 | Notice the use of %PUBLIC_URL% in the tag above. 9 | It will be replaced with the URL of the `public` folder during the build. 10 | Only files inside the `public` folder can be referenced from the HTML. 11 | 12 | Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will 13 | work correctly both with client-side routing and a non-root public URL. 14 | Learn how to configure a non-root public URL by running `npm run build`. 15 | --> 16 | <title>React App 17 | 18 | 19 |
20 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | text-align: center; 3 | } 4 | 5 | .App-logo { 6 | animation: App-logo-spin infinite 20s linear; 7 | height: 80px; 8 | } 9 | 10 | .App-header { 11 | background-color: #222; 12 | height: 150px; 13 | padding: 20px; 14 | color: white; 15 | } 16 | 17 | .App-intro { 18 | font-size: large; 19 | } 20 | 21 | @keyframes App-logo-spin { 22 | from { transform: rotate(0deg); } 23 | to { transform: rotate(360deg); } 24 | } 25 | -------------------------------------------------------------------------------- /src/App.test.tsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | import * as ReactDOM from 'react-dom'; 3 | import App from './App'; 4 | 5 | it('renders without crashing', () => { 6 | const div = document.createElement('div'); 7 | ReactDOM.render(, div); 8 | }); 9 | -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | import './App.css'; 3 | import Hello from './components/Hello'; 4 | 5 | const logo = require('./logo.svg'); 6 | 7 | function App() { 8 | return ( 9 |
10 |
11 | logo 12 |

Welcome to React

13 |
14 |

15 | To get started, edit src/App.tsx and save to reload. 16 |

17 | 18 |
19 | ); 20 | } 21 | 22 | export default App; 23 | 24 | -------------------------------------------------------------------------------- /src/actions/index.tsx: -------------------------------------------------------------------------------- 1 | 2 | import * as constants from '../constants'; 3 | 4 | export interface IncrementEnthusiasm { 5 | type: constants.INCREMENT_ENTHUSIASM; 6 | } 7 | 8 | export interface DecrementEnthusiasm { 9 | type: constants.DECREMENT_ENTHUSIASM; 10 | } 11 | 12 | export type EnthusiasmAction = IncrementEnthusiasm | DecrementEnthusiasm; 13 | 14 | export function incrementEnthusiasm(): IncrementEnthusiasm { 15 | return { 16 | type: constants.INCREMENT_ENTHUSIASM 17 | }; 18 | } 19 | 20 | export function decrementEnthusiasm(): DecrementEnthusiasm { 21 | return { 22 | type: constants.DECREMENT_ENTHUSIASM 23 | }; 24 | } -------------------------------------------------------------------------------- /src/components/Hello.css: -------------------------------------------------------------------------------- 1 | .hello { 2 | text-align: center; 3 | margin: 20px; 4 | font-size: 48px; 5 | font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif 6 | } 7 | 8 | .hello button { 9 | margin-left: 25px; 10 | margin-right: 25px; 11 | font-size: 40px; 12 | min-width: 50px; 13 | } -------------------------------------------------------------------------------- /src/components/Hello.test.tsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | import * as enzyme from 'enzyme'; 3 | import Hello from './Hello'; 4 | 5 | it('renders the correct text when no enthusiasm level is given', () => { 6 | const hello = enzyme.shallow(); 7 | expect(hello.find('.greeting').text()).toEqual('Hello Daniel!'); 8 | }); 9 | 10 | it('renders the correct text with an explicit enthusiasm of 1', () => { 11 | const hello = enzyme.shallow(); 12 | expect(hello.find('.greeting').text()).toEqual('Hello Daniel!'); 13 | }); 14 | 15 | it('renders the correct text with an explicit enthusiasm level of 5', () => { 16 | const hello = enzyme.shallow(); 17 | expect(hello.find('.greeting').text()).toEqual('Hello Daniel!!!!!'); 18 | }); 19 | 20 | it('throws when the enthusiasm level is 0', () => { 21 | expect(() => { 22 | enzyme.shallow(); 23 | }).toThrow(); 24 | }); 25 | 26 | it('throws when the enthusiasm level is negative', () => { 27 | expect(() => { 28 | enzyme.shallow(); 29 | }).toThrow(); 30 | }); 31 | -------------------------------------------------------------------------------- /src/components/Hello.tsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | import './Hello.css'; 3 | 4 | export interface Props { 5 | name: string; 6 | enthusiasmLevel?: number; 7 | onIncrement?: () => void; 8 | onDecrement?: () => void; 9 | } 10 | 11 | function Hello({ name, enthusiasmLevel = 1, onIncrement, onDecrement }: Props) { 12 | if (enthusiasmLevel <= 0) { 13 | throw new Error('You could be a little more enthusiastic. :D'); 14 | } 15 | 16 | return ( 17 |
18 |
19 | Hello {name + getExclamationMarks(enthusiasmLevel)} 20 |
21 |
22 | 23 | 24 |
25 |
26 | ); 27 | } 28 | 29 | export default Hello; 30 | 31 | // helpers 32 | 33 | function getExclamationMarks(numChars: number) { 34 | return Array(numChars + 1).join('!'); 35 | } 36 | -------------------------------------------------------------------------------- /src/constants/index.tsx: -------------------------------------------------------------------------------- 1 | 2 | export const INCREMENT_ENTHUSIASM = 'INCREMENT_ENTHUSIASM'; 3 | export type INCREMENT_ENTHUSIASM = typeof INCREMENT_ENTHUSIASM; 4 | 5 | export const DECREMENT_ENTHUSIASM = 'DECREMENT_ENTHUSIASM'; 6 | export type DECREMENT_ENTHUSIASM = typeof DECREMENT_ENTHUSIASM; 7 | -------------------------------------------------------------------------------- /src/containers/Hello.tsx: -------------------------------------------------------------------------------- 1 | import Hello from '../components/Hello'; 2 | import * as actions from '../actions/'; 3 | import { StoreState } from '../types/index'; 4 | import { connect, Dispatch } from 'react-redux'; 5 | 6 | export function mapStateToProps({ enthusiasmLevel, languageName }: StoreState) { 7 | return { 8 | enthusiasmLevel, 9 | name: languageName, 10 | }; 11 | } 12 | 13 | export function mapDispatchToProps(dispatch: Dispatch) { 14 | return { 15 | onIncrement: () => dispatch(actions.incrementEnthusiasm()), 16 | onDecrement: () => dispatch(actions.decrementEnthusiasm()), 17 | }; 18 | } 19 | 20 | export default connect(mapStateToProps, mapDispatchToProps)(Hello); 21 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | padding: 0; 4 | font-family: sans-serif; 5 | } 6 | -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | import * as ReactDOM from 'react-dom'; 3 | 4 | import Hello from './containers/Hello'; 5 | import { Provider } from 'react-redux'; 6 | import { createStore } from 'redux'; 7 | import { enthusiasm } from './reducers/index'; 8 | import { StoreState } from './types/index'; 9 | 10 | import './index.css'; 11 | 12 | const store = createStore(enthusiasm, { 13 | enthusiasmLevel: 1, 14 | languageName: 'TypeScript', 15 | }); 16 | 17 | ReactDOM.render( 18 | 19 | 20 | , 21 | document.getElementById('root') as HTMLElement 22 | ); 23 | -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/reducers/index.tsx: -------------------------------------------------------------------------------- 1 | 2 | import { EnthusiasmAction } from '../actions'; 3 | import { StoreState } from '../types/index'; 4 | import { INCREMENT_ENTHUSIASM, DECREMENT_ENTHUSIASM } from '../constants/index'; 5 | 6 | export function enthusiasm(state: StoreState, action: EnthusiasmAction): StoreState { 7 | switch (action.type) { 8 | case INCREMENT_ENTHUSIASM: 9 | return { ...state, enthusiasmLevel: state.enthusiasmLevel + 1 }; 10 | case DECREMENT_ENTHUSIASM: 11 | return { ...state, enthusiasmLevel: Math.max(1, state.enthusiasmLevel - 1) }; 12 | default: 13 | return state; 14 | } 15 | } -------------------------------------------------------------------------------- /src/types/index.tsx: -------------------------------------------------------------------------------- 1 | 2 | export interface StoreState { 3 | languageName: string; 4 | enthusiasmLevel: number; 5 | } -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "outDir": "build/dist", 4 | "module": "commonjs", 5 | "target": "es5", 6 | "lib": ["es6", "dom"], 7 | "sourceMap": true, 8 | "allowJs": true, 9 | "jsx": "react", 10 | "moduleResolution": "node", 11 | "rootDir": "src", 12 | "noImplicitReturns": true, 13 | "noImplicitThis": true, 14 | "noImplicitAny": true, 15 | "strictNullChecks": true 16 | }, 17 | "exclude": [ 18 | "node_modules", 19 | "build", 20 | "scripts", 21 | "acceptance-tests", 22 | "webpack", 23 | "jest", 24 | "src/setupTests.ts" 25 | ], 26 | "types": [ 27 | "typePatches" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [], 3 | "defaultSeverity": "warning", 4 | "linterOptions": { 5 | "exclude": [ 6 | "config/**/*.js", 7 | "node_modules/**/*.ts" 8 | ] 9 | } 10 | } 11 | --------------------------------------------------------------------------------