Skip to content

Commit c2dfa58

Browse files
authored
Update README.md
1 parent dedffa1 commit c2dfa58

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

README.md

+10-8
Original file line numberDiff line numberDiff line change
@@ -21,25 +21,27 @@ For running this project we need and npm installed on our machine. These are som
2121

2222
# Installing the Angular CLI
2323

24-
With the following command the angular-cli will be installed globally in your machine:
24+
With the following command the angular-cli will be installed globally in your machine, as well as Yarn:
2525

26-
npm install -g @angular/cli
26+
npm install -g @angular/cli yarn
2727

2828

2929
# How To install this repository
3030

3131
We can install the master branch using the following commands:
3232

3333
git clone https://github.com/angular-university/angular-advanced-course.git
34-
cd angular-advanced-course
35-
npm install
34+
35+
This repository is made of several separate npm modules, that are installable separately. For example, to run the au-input module, we can do the following:
36+
37+
cd angular-advanced-course/au-input
38+
yarn
3639

37-
If you prefer the Yarn package manager, instead of npm install you can also run:
40+
Its also possible to install the modules as usual using npm:
3841

39-
yarn
42+
npm install
4043

41-
Although npm install would also work, its recommended to use Yarn to install the course dependencies. Yarn has the big advantage that if you use it you will be
42-
installing the exact same dependencies than I installed in my machine, so you wont run into issues caused by semantic versioning updates.
44+
Yarn has the big advantage that if you use it you will be installing the exact same dependencies than I installed in my machine, so you wont run into issues caused by semantic versioning updates.
4345

4446
This should take a couple of minutes. If there are issues, please post the complete error message in the Questions section of the course.
4547

0 commit comments

Comments
 (0)