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
+39-36Lines changed: 39 additions & 36 deletions
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,15 @@
1
1
2
-
## Angular Ngrx Course
2
+
## Ngrx (with NgRx Data) - The Complete Guide
3
3
4
-
This repository contains the code of the [Angular Ngrx Course](https://angular-university.io/course/angular-ngrx-course).
4
+
This repository contains the code of the video course [Ngrx (with NgRx Data) - The Complete Guide](https://angular-university.io/course/ngrx-course).
5
5
6
-
This course repository is updated to Angular v8, and there is a package-lock.json file available, for avoiding semantic versioning installation issues.

9
9
10
10
11
11
# Installation pre-requisites
12
12
13
-
IMPORTANT: Please use NPM 5 or above, to make sure the package-lock.json is used.
14
-
15
13
For running this project we need and npm installed on our machine. These are some tutorials to install node in different operating systems:
16
14
17
15
*Its important to install the latest version of Node*
@@ -36,15 +34,13 @@ We can install the master branch using the following commands:
36
34
37
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:
38
36
39
-
cd angular-ngrx-course
37
+
cd ngrx-course
40
38
npm install
41
39
42
40
Its also possible to install the modules as usual using npm:
43
41
44
42
npm install
45
43
46
-
NPM 5 or above 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.
47
-
48
44
This should take a couple of minutes. If there are issues, please post the complete error message in the Questions section of the course.
49
45
50
46
# To Run the Development Backend Server
@@ -73,16 +69,47 @@ At certain points along the course, you will be asked to checkout other remote b
73
69
74
70
git branch -a
75
71
76
-
The remote branches have their starting in origin, such as for example 1-navigation-and-containers.
72
+
The remote branches have their starting in origin, such as for example 1-start.
77
73
78
74
We can checkout the remote branch and start tracking it with a local branch that has the same name, by using the following command:
79
75
80
-
git checkout -b 1-auth origin/1-auth
76
+
git checkout -b 1-start
81
77
82
78
It's also possible to download a ZIP file for a given branch, using the branch dropdown on this page on the top left, and then selecting the Clone or Download / Download as ZIP button.
83
79
84
80
# Other Courses
85
81
82
+
# Angular Core Deep Dive Course
83
+
84
+
If you are looking for the [Angular Core Deep Dive Course](https://angular-university.io/course/angular-course), the repo with the full code can be found here:
85
+
86
+

87
+
88
+
# RxJs In Practice
89
+
90
+
If you are looking for the [RxJs In Practice](https://angular-university.io/course/rxjs-course), the repo with the full code can be found here:
91
+
92
+

93
+
94
+
95
+
# Angular Testing Course
96
+
97
+
If you are looking for the [Angular Testing Course](https://angular-university.io/course/angular-testing-course), the repo with the full code can be found here:
If you are looking for the [Serverless Angular with Firebase Course](https://angular-university.io/course/firebase-course), the repo with the full code can be found here:
104
+
105
+

106
+
107
+
# Angular Universal Course
108
+
109
+
If you are looking for the [Angular Universal Course](https://angular-university.io/course/angular-universal-course), the repo with the full code can be found here:
If you are looking for the [Angular PWA Course](https://angular-university.io/course/angular-pwa-course), the repo with the full code can be found here:
@@ -115,31 +142,7 @@ If you are looking for the RxJs and Reactive Patterns Angular Architecture Cours
115
142

0 commit comments