You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: template/README.md
+10-6
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ You can find the most recent version of this guide [here](https://github.com/fac
9
9
-[npm start](#npm-start)
10
10
-[npm run build](#npm-run-build)
11
11
-[npm run eject](#npm-run-eject)
12
-
-[How To](#how-to)
12
+
-[Recipes](#recipes)
13
13
-[Displaying Lint Output in the Editor](#displaying-lint-output-in-the-editor)
14
14
-[Installing a Dependency](#installing-a-dependency)
15
15
-[Importing a Component](#importing-a-component)
@@ -18,6 +18,7 @@ You can find the most recent version of this guide [here](https://github.com/fac
18
18
-[Adding Images and Fonts](#adding-images-and-fonts)
19
19
-[Adding Bootstrap](#adding-bootstrap)
20
20
-[Adding Flow](#adding-flow)
21
+
-[Integrating with a Node Backend](#integrating-with-a-node-backend)
21
22
-[Deploying](#deploying)
22
23
-[Something Missing?](#something-missing)
23
24
@@ -88,7 +89,7 @@ Instead, it will copy all the configuration files and the transitive dependencie
88
89
89
90
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.
We recognize that this is suboptimal, but it is currently required due to the way we hide the ESLint dependency. The ESLint team is already [working on a solution to this](https://github.com/eslint/eslint/issues/3458) so this may become unnecessary in a couple of months.
130
131
131
-
132
132
### Installing a Dependency
133
133
134
134
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`:
@@ -316,7 +316,7 @@ Now you are ready to use the imported React Bootstrap components within your com
316
316
317
317
Flow typing is currently [not supported out of the box](https://github.com/facebookincubator/create-react-app/issues/72) with the default `.flowconfig` generated by Flow. If you run it, you might get errors like this:
We will consider integrating more tightly with Flow in the future so that you don’t have to do this.
370
370
371
+
### Integrating with a Node Backend
372
+
373
+
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).
0 commit comments