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
* adding comment on windows support of nvm
* adding tree structure for intial project output
* applying feedback from this thread create-react-app/pull/1931
Copy file name to clipboardexpand all lines: README.md
+18-18
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ Install it once globally:
40
40
npm install -g create-react-app
41
41
```
42
42
43
-
**You’ll need to have Node >= 6 on your machine**. You can use [nvm](https://github.com/creationix/nvm#usage) to easily switch Node versions between different projects.
43
+
**You’ll need to have Node >= 6 on your machine**. You can use [nvm](https://github.com/creationix/nvm#installation) to easily switch Node versions between different projects.
44
44
45
45
**This tool doesn’t assume a Node backend**. The Node installation is only required for Create React App itself.
46
46
@@ -57,23 +57,23 @@ It will create a directory called `my-app` inside the current folder.<br>
57
57
Inside that directory, it will generate the initial project structure and install the transitive dependencies:
58
58
59
59
```
60
-
my-app/
61
-
README.md
62
-
node_modules/
63
-
package.json
64
-
.gitignore
65
-
public/
66
-
favicon.ico
67
-
index.html
68
-
manifest.json
69
-
src/
70
-
App.css
71
-
App.js
72
-
App.test.js
73
-
index.css
74
-
index.js
75
-
logo.svg
76
-
registerServiceWorker.js
60
+
my-app
61
+
├── README.md
62
+
├── node_modules
63
+
├── package.json
64
+
├── .gitignore
65
+
├── public
66
+
│└── favicon.ico
67
+
│└── index.html
68
+
│└── manifest.json
69
+
└── src
70
+
└── App.css
71
+
└── App.js
72
+
└── App.test.js
73
+
└── index.css
74
+
└── index.js
75
+
└── logo.svg
76
+
└── registerServiceWorker.js
77
77
```
78
78
79
79
No configuration or complicated folder structures, just the files you need to build your app.<br>
0 commit comments