@@ -61,7 +61,7 @@ a few git commands.
61
61
62
62
### Install Git
63
63
64
- You can download and install Git from http://git-scm.com/download. Once installed you should have
64
+ You can download and install Git from http://git-scm.com/download. Once installed, you should have
65
65
access to the `git` command line tool. The main commands that you will need to use are:
66
66
67
67
- `git clone ...` : clone a remote repository onto your local machine
@@ -123,7 +123,7 @@ npm --version
123
123
</a>.
124
124
</div>
125
125
126
- Once you have Node.js installed on your machine you can download the tool dependencies by running:
126
+ Once you have Node.js installed on your machine, you can download the tool dependencies by running:
127
127
128
128
```
129
129
npm install
@@ -198,7 +198,7 @@ http://localhost:8000/app/index.html
198
198
```
199
199
200
200
<div class="alert alert-info">
201
- To serve the web app on a different ip address or port, edit the "start" script within package.json.
201
+ To serve the web app on a different IP address or port, edit the "start" script within package.json.
202
202
You can use `-a` to set the address and `-p` to set the port.
203
203
</div>
204
204
@@ -221,7 +221,7 @@ This will start the Karma unit test runner. Karma will read the configuration fi
221
221
- open up a Chrome browser and connect it to Karma
222
222
- execute all the unit tests in this browser
223
223
- report the results of these tests in the terminal/command line window
224
- - watch all the project's JavaScript files and re-run the tests whenever any of these change
224
+ - watch all the project's JavaScript files and re-run the tests whenever any of these changes
225
225
226
226
It is good to leave this running all the time, in the background, as it will give you immediate
227
227
feedback about whether your changes pass the unit tests while you are working on the code.
0 commit comments