Skip to content

Commit 78740df

Browse files
committed
(#15) Update readme
1 parent baa299b commit 78740df

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,26 +36,33 @@ Install the following node modules
3636
## Running App
3737
After installation run `npm run server` to start a local server using `webpack-dev-server` which will watch, build (in-memory), and reload for you. The port will be displayed to you as `http://localhost:3000` (or if you prefer IPv6, if you're using `express` server, then it's `http://[::1]:3000/`).
3838

39+
### server
40+
```bash
41+
$ webpack-dev-server
42+
```
43+
44+
## Other Commands
45+
3946
### build files
4047
```bash
41-
$ npm run build # or webpack
48+
$ webpack
4249
```
4350

4451
### watch and build files
4552
```bash
46-
$ npm run watch # or webpack --watch
53+
$ webpack --watch
4754
```
4855

4956
### run tests
5057
```bash
51-
$ npm run test # or karma start
58+
$ karma start
5259
```
5360

5461
### run webdriver (E2E)
5562
```bash
56-
$ npm run webdriver-start # or webdriver-manager start
63+
$ webdriver-manager start
5764
then
58-
$ npm rune e2e
65+
$ npm run e2e
5966
```
6067

6168
# Angular 2.0 API

0 commit comments

Comments
 (0)