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
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ To grab the seed project, either Fork this repo or [click here to download](http
32
32
33
33
#### Step 1: Package Manager
34
34
35
-
To install the project dependencies, you will need to install`yarn`. To install `yarn`, run the following in your terminal:
35
+
To install the project dependencies, you will need to either use `npm` or`yarn`. To install `yarn`, run the following in your terminal:
36
36
37
37
```bash
38
38
npm install -g yarn
@@ -53,6 +53,10 @@ Now that we have a package manager, we can install the project dependencies. You
53
53
54
54
```bash
55
55
yarn install
56
+
57
+
# OR
58
+
59
+
npm install
56
60
```
57
61
58
62
This will install our dependencies for running our Angular application.
@@ -65,6 +69,10 @@ To start the project in development, run:
65
69
66
70
```
67
71
yarn start
72
+
73
+
# OR
74
+
75
+
npm start
68
76
```
69
77
70
78
This will output some information about the project (such as the TypeScript version and build progress). Once you see "build completed", you are ready to code!
0 commit comments