Skip to content

Commit 79c2e71

Browse files
authored
Add npm clarification to readme
1 parent 6beac89 commit 79c2e71

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ To grab the seed project, either Fork this repo or [click here to download](http
3232

3333
#### Step 1: Package Manager
3434

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:
3636

3737
```bash
3838
npm install -g yarn
@@ -53,6 +53,10 @@ Now that we have a package manager, we can install the project dependencies. You
5353

5454
```bash
5555
yarn install
56+
57+
# OR
58+
59+
npm install
5660
```
5761

5862
This will install our dependencies for running our Angular application.
@@ -65,6 +69,10 @@ To start the project in development, run:
6569

6670
```
6771
yarn start
72+
73+
# OR
74+
75+
npm start
6876
```
6977

7078
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

Comments
 (0)