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: README.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -91,4 +91,19 @@ end
91
91
vagrant halt && vagrant up --provision
92
92
```
93
93
14. Last step. whew...! Once your vagrant server is on (vagrant up and vagrant ssh!), check that Ruby and Rails was installed!
94
-
``` ruby -v ```
94
+
```
95
+
ruby -v
96
+
```
97
+
## Downloading create-react-app
98
+
99
+
First we need Node Packet Manager if you dont already. You can download it [here.](https://www.npmjs.com/get-npm) Run the installer and save settings so npm is saved globally.
100
+
101
+
Let's begin!
102
+
103
+
1. run ``` npm install -g create-react-app``` and let the files download to your drive.
104
+
105
+
1a. If you are running problems with the ```ERR!``` message, try using ```sudo``` to run privileges as administrator.
106
+
107
+
2. Let's create a test app to see if everything is running smoothly. type ``` create-react-app my-cool-app``` in the command line and see if everything installs. ``` my-cool-app``` will be the name of your react project.
108
+
109
+
3. Run ``` npm start ``` and type Y in case there are some conflicting port configs in your local host.
0 commit comments