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: .github/ISSUE_TEMPLATE/question.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ about: Get help with Create React App
4
4
labels: 'needs triage'
5
5
---
6
6
7
-
If you have a general question about Create React App or about building an app with Create React App we encourage you to post on our Spectrum community instead of this issue tracker. The maintainers and other community members can provide help and answer your questions there: https://spectrum.chat/create-react-app
7
+
If you have a general question about Create React App or about building an app with Create React App we encourage you to post in GitHub Discussions instead of this issue tracker. The maintainers and other community members can provide help and answer your questions there: https://github.com/facebook/create-react-app/discussions
8
8
9
9
If you're looking for general information on using React, the React docs have a list of resources: https://reactjs.org/community/support.html
Copy file name to clipboardExpand all lines: CHANGELOG.md
+54Lines changed: 54 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,57 @@
1
+
## 3.4.4 (2020-10-20)
2
+
3
+
v3.4.4 release bumps `resolve-url-loader` to a version for which `npm audit` does not report a vulnerability. Note that **this vulnerability did not affect Create React App projects**, so this change is only necessary to satisfy auditing tools.
4
+
5
+
### Migrating from 3.4.3 to 3.4.4
6
+
7
+
Inside any created project that has not been ejected, run:
v3.4.3 release bumps `terser-webpack-plugin` to a version for which `npm audit` does not report a vulnerability. Note that **this vulnerability did not affect Create React App projects**, so this change is only necessary to satisfy auditing tools.
22
+
23
+
### Migrating from 3.4.2 to 3.4.3
24
+
25
+
Inside any created project that has not been ejected, run:
v3.4.2 release bumps `webpack-dev-server` to a version for which `npm audit` does not report a vulnerability. Note that **this vulnerability did not affect Create React App projects**, so this change is only necessary to satisfy auditing tools.
40
+
41
+
### Migrating from 3.4.1 to 3.4.2
42
+
43
+
Inside any created project that has not been ejected, run:
v3.4.1 is a maintenance release that includes minor bug fixes and documentation updates including upgrading Babel to fix a bug in the 7.8 release line. This release also brings support for TypeScript 3.8.
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,7 +94,7 @@ All functionality must be retained (and configuration given to the user) if they
94
94
95
95
2. Run `yarn` in the root `create-react-app` folder.
96
96
97
-
Once it is done, you can modify any file locally and run `yarn start`, `yarn test` or `yarn build` like you can in a generated project.
97
+
Once it is done, you can modify any file locally and run `yarn start`, `yarn test` or `yarn build` like you can in a generated project. It will serve the application from the files located in `packages/cra-template/template`.
98
98
99
99
If you want to try out the end-to-end flow with the global CLI, you can do this too:
-[Creating an App](#creating-an-app) – How to create a new app.
6
8
-[User Guide](https://facebook.github.io/create-react-app/) – How to develop apps bootstrapped with Create React App.
7
9
8
10
Create React App works on macOS, Windows, and Linux.<br>
9
11
If something doesn’t work, please [file an issue](https://github.com/facebook/create-react-app/issues/new).<br>
10
-
If you have questions or need help, please ask in our [Spectrum](https://spectrum.chat/create-react-app) community.
12
+
If you have questions or need help, please ask in [GitHub Discussions](https://github.com/facebook/create-react-app/discussions).
11
13
12
14
## Quick Overview
13
15
@@ -17,7 +19,7 @@ cd my-app
17
19
npm start
18
20
```
19
21
20
-
If you've previously installed `create-react-app` globally via `npm install -g create-react-app`, we recommend you uninstall the package using `npm uninstall -g create-react-app` to ensure that npx always uses the latest version.
22
+
If you've previously installed `create-react-app` globally via `npm install -g create-react-app`, we recommend you uninstall the package using `npm uninstall -g create-react-app`or `yarn global remove create-react-app`to ensure that npx always uses the latest version.
21
23
22
24
_([npx](https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b) comes with npm 5.2+ and higher, see [instructions for older npm versions](https://gist.github.com/gaearon/4064d3c23a77c74a3614c498a8bb1c5f))_
23
25
@@ -86,6 +88,7 @@ my-app
86
88
├── index.js
87
89
├── logo.svg
88
90
└── serviceWorker.js
91
+
└── setupTests.js
89
92
```
90
93
91
94
No configuration or complicated folder structures, only the files you need to build your app.<br>
@@ -174,9 +177,9 @@ Here are a few common cases where you might want to try something else:
174
177
175
178
- If you need to **publish a React component**, [nwb](https://github.com/insin/nwb) can [also do this](https://github.com/insin/nwb#react-components-and-libraries), as well as [Neutrino's react-components preset](https://neutrino.js.org/packages/react-components/).
176
179
177
-
- If you want to do **server rendering** with React and Node.js, check out [Next.js](https://github.com/zeit/next.js/) or [Razzle](https://github.com/jaredpalmer/razzle). Create React App is agnostic of the backend, and only produces static HTML/JS/CSS bundles.
180
+
- If you want to do **server rendering** with React and Node.js, check out [Next.js](https://nextjs.org/) or [Razzle](https://github.com/jaredpalmer/razzle). Create React App is agnostic of the backend, and only produces static HTML/JS/CSS bundles.
178
181
179
-
- If your website is **mostly static** (for example, a portfolio or a blog), consider using [Gatsby](https://www.gatsbyjs.org/)instead. Unlike Create React App, it pre-renders the website into HTML at the build time.
182
+
- If your website is **mostly static** (for example, a portfolio or a blog), consider using [Gatsby](https://www.gatsbyjs.org/)or [Next.js](https://nextjs.org/). Unlike Create React App, Gatsby pre-renders the website into HTML at build time. Next.js supports both server rendering and pre-rendering.
180
183
181
184
- Finally, if you need **more customization**, check out [Neutrino](https://neutrino.js.org/) and its [React preset](https://neutrino.js.org/packages/react/).
If you believe you have found a security vulnerability in Create React App, we encourage you to let us know right away. We will investigate all legitimate reports and do our best to quickly fix the problem.
4
+
5
+
Please refer to the following page for our responsible disclosure policy, reward guidelines, and those things that should not be reported:
0 commit comments