Skip to content

Commit 0350c1f

Browse files
shaunwallacemorgs32
authored andcommitted
Updated README (facebook#1931)
* adding comment on windows support of nvm * adding tree structure for intial project output * applying feedback from this thread create-react-app/pull/1931
1 parent 8164016 commit 0350c1f

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

README.md

+18-18
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Install it once globally:
4040
npm install -g create-react-app
4141
```
4242

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.
4444

4545
**This tool doesn’t assume a Node backend**. The Node installation is only required for Create React App itself.
4646

@@ -57,23 +57,23 @@ It will create a directory called `my-app` inside the current folder.<br>
5757
Inside that directory, it will generate the initial project structure and install the transitive dependencies:
5858

5959
```
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
7777
```
7878

7979
No configuration or complicated folder structures, just the files you need to build your app.<br>

0 commit comments

Comments
 (0)