Skip to content

Commit 421fd06

Browse files
committed
Angular Material In Depth
2 parents ad95bbe + b65ebfe commit 421fd06

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+19893
-5691
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
!.vscode/extensions.json
2626

2727
# misc
28+
/.angular/cache
2829
/.sass-cache
2930
/connect.lock
3031
/coverage

README.md

Lines changed: 68 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -1,95 +1,115 @@
11

2-
## IMPORTANT
2+
## Angular Material Course
33

4-
This repository currently contains the code for **two versions** of the course.
4+
This repository contains the code of the [Angular Material In Depth] video course (https://angular-university.io/course/angular-material-course).
55

6-
The new version of the course is called [Angular Material In Depth](https://angular-university.io/course/angular-material-course):
6+
This course repository is updated to Angular 13:
77

88
![Angular Material In Depth](https://s3-us-west-1.amazonaws.com/angular-university/course-images/angular-material-course-1.jpg)
99

10-
You can find the starting point of this new version of the course in the [1-start branch](https://github.com/angular-university/angular-material-course/tree/1-start).
10+
You can find the starting point of the course in the [1-start branch](https://github.com/angular-university/angular-material-course/tree/1-start).
1111

12-
On the other hand, if you are looking for the previous version of the course (soon to be archived) and called the [Angular Material Course](https://angular-university.io/course/angular-material-course-v1), then you can start your course with the initial branch [1-navigation-and-containers](https://github.com/angular-university/angular-material-course/tree/1-navigation-and-containers).
13-
14-
![Angular Material Course](https://s3-us-west-1.amazonaws.com/angular-university/course-images/material_design.png)
15-
16-
17-
This course repository is updated to Angular v12.
12+
This master branch contains the *final version of the course code*, that you can use as a reference if you choose to code along.
1813

1914
# Installation pre-requisites
2015

21-
IMPORTANT: Please use NPM 5 or above, to make sure the package-lock.json is used.
22-
23-
For running this project we need and npm installed on our machine. These are some tutorials to install node in different operating systems:
24-
25-
*Its important to install the latest version of Node*
26-
27-
- [Install Node and NPM on Windows](https://www.youtube.com/watch?v=8ODS6RM6x7g)
28-
- [Install Node and NPM on Linux](https://www.youtube.com/watch?v=yUdHk-Dk_BY)
29-
- [Install Node and NPM on Mac](https://www.youtube.com/watch?v=Imj8PgG3bZU)
30-
16+
IMPORTANT: Please use Node 16 LST (Long Term Support version).
3117

3218
# Installing the Angular CLI
3319

3420
With the following command the angular-cli will be installed globally in your machine:
3521

3622
npm install -g @angular/cli
3723

38-
3924
# How To install this repository
4025

4126
We can install the master branch using the following commands:
4227

43-
git clone https://github.com/angular-university/angular-material-course.git
44-
45-
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:
46-
47-
cd angular-material-course
48-
npm install
49-
50-
Its also possible to install the modules as usual using npm:
51-
52-
npm install
28+
git clone https://github.com/angular-university/firebase-course.git
5329

54-
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.
30+
cd angular-material-course
31+
npm ci
5532

56-
This should take a couple of minutes. If there are issues, please post the complete error message in the Questions section of the course.
33+
Note: **We recommend using npm ci, instead of npm install**. This will ensure that you use the exact dependency versions set on package-lock.json, unlike npm install which might potentially change those versions.
5734

5835
# To Run the Development Backend Server
5936

37+
Our Angular frontend connects to a simple Node server, running also in your local development machine.
38+
6039
We can start the sample application backend with the following command:
6140

6241
npm run server
6342

64-
This is a small Node REST API server.
65-
6643
# To run the Development UI Server
6744

45+
Once the backend server is up and running, we can now run our frontend server.
46+
6847
To run the frontend part of our code, we will use the Angular CLI:
6948

7049
npm start
7150

7251
The application is visible at port 4200: [http://localhost:4200](http://localhost:4200)
7352

53+
Note: **make sure to use command npm start and not ng serve, as npm start adds a couple extra options that are needed for our project **
7454

55+
# Other Courses
7556

76-
# Important
57+
# Other Courses
7758

78-
This repository has multiple branches, have a look at the beginning of each section to see the name of the branch.
59+
# Angular Forms In Depth
7960

80-
At certain points along the course, you will be asked to checkout other remote branches other than master. You can view all branches that you have available remotely using the following command:
61+
If you are looking for the [Angular Forms In Depth](https://angular-university.io/course/angular-forms-course) course, the repo with the full code can be found here:
8162

82-
git branch -a
63+
![Angular Forms In Depth](https://angular-university.s3-us-west-1.amazonaws.com/course-images/angular-forms-course-small.jpg)
8364

84-
The remote branches have their starting in origin, such as for example 1-navigation-and-containers.
65+
# Angular Router In Depth
8566

86-
We can checkout the remote branch and start tracking it with a local branch that has the same name, by using the following command:
67+
If you are looking for the [Angular Router In Depth](https://angular-university.io/course/angular-router-course) course, the repo with the full code can be found here:
8768

88-
git checkout -b section-1 origin/1-navigation-and-containers
69+
![Angular Router In Depth](https://angular-university.s3-us-west-1.amazonaws.com/course-images/angular-router-course.jpg)
8970

90-
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.
71+
# NgRx (with NgRx Data) - The Complete Guide
9172

92-
# Other Courses
73+
If you are looking for the [Ngrx (with NgRx Data) - The Complete Guide](https://angular-university.io/course/ngrx-course), the repo with the full code can be found here:
74+
75+
![Ngrx (with NgRx Data) - The Complete Guide](https://angular-university.s3-us-west-1.amazonaws.com/course-images/ngrx-v2.png)
76+
77+
78+
# Angular Core Deep Dive Course
79+
80+
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:
81+
82+
![Angular Core Deep Dive](https://s3-us-west-1.amazonaws.com/angular-university/course-images/angular-core-in-depth-small.png)
83+
84+
# RxJs In Practice
85+
86+
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:
87+
88+
![RxJs In Practice Course](https://s3-us-west-1.amazonaws.com/angular-university/course-images/rxjs-in-practice-course.png)
89+
90+
# NestJs In Practice (with MongoDB)
91+
92+
If you are looking for the [NestJs In Practice Course](https://angular-university.io/course/nestjs-course), the repo with the full code can be found here:
93+
94+
![NestJs In Practice Course](https://angular-university.s3-us-west-1.amazonaws.com/course-images/nestjs-v2.png)
95+
96+
# Angular Testing Course
97+
98+
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:
99+
100+
![Angular Testing Course](https://s3-us-west-1.amazonaws.com/angular-university/course-images/angular-testing-small.png)
101+
102+
# Serverless Angular with Firebase Course
103+
104+
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:
105+
106+
![Serverless Angular with Firebase Course](https://s3-us-west-1.amazonaws.com/angular-university/course-images/serverless-angular-small.png)
107+
108+
# Angular Universal Course
109+
110+
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:
111+
112+
![Angular Universal Course](https://s3-us-west-1.amazonaws.com/angular-university/course-images/angular-universal-small.png)
93113

94114
# Angular PWA Course
95115

@@ -123,31 +143,7 @@ If you are looking for the RxJs and Reactive Patterns Angular Architecture Cours
123143
![RxJs and Reactive Patterns Angular Architecture Course](https://s3-us-west-1.amazonaws.com/angular-academy/blog/images/rxjs-reactive-patterns-small.png)
124144

125145

126-
127-
## Angular Ngrx Reactive Extensions Architecture Course
128-
129-
If you are looking for the Angular Ngrx Reactive Extensions Architecture Course code, the repo with the full code can be found here:
130-
131-
[Angular Ngrx Reactive Extensions Architecture Course](https://angular-university.io/course/angular2-ngrx)
132-
133-
[Github repo for this course](https://github.com/angular-university/ngrx-course)
134-
135-
![Angular Ngrx Course](https://angular-academy.s3.amazonaws.com/thumbnails/ngrx-angular.png)
136-
137-
138-
139-
## Angular 2 and Firebase - Build a Web Application Course
140-
141-
If you are looking for the Angular 2 and Firebase - Build a Web Application Course code, the repo with the full code can be found here:
142-
143-
[Angular 2 and Firebase - Build a Web Application](https://angular-university.io/course/build-an-application-with-angular2)
144-
145-
[Github repo for this course](https://github.com/angular-university/angular-firebase-app)
146-
147-
![Angular firebase course](https://angular-academy.s3.amazonaws.com/thumbnails/angular_app-firebase-small.jpg)
148-
149-
150-
## Complete Typescript 2 Course - Build A REST API
146+
## Complete Typescript Course - Build A REST API
151147

152148
If you are looking for the Complete Typescript 2 Course - Build a REST API, the repo with the full code can be found here:
153149

@@ -157,3 +153,6 @@ If you are looking for the Complete Typescript 2 Course - Build a REST API, the
157153

158154
![Complete Typescript Course](https://angular-academy.s3.amazonaws.com/thumbnails/typescript-2-small.png)
159155

156+
157+
158+

angular.json

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -88,18 +88,6 @@
8888
"src/favicon.ico"
8989
]
9090
}
91-
},
92-
"lint": {
93-
"builder": "@angular-devkit/build-angular:tslint",
94-
"options": {
95-
"tsConfig": [
96-
"src/tsconfig.app.json",
97-
"src/tsconfig.spec.json"
98-
],
99-
"exclude": [
100-
"**/node_modules/**"
101-
]
102-
}
10391
}
10492
}
10593
},
@@ -114,17 +102,6 @@
114102
"protractorConfig": "./protractor.conf.js",
115103
"devServerTarget": "angular-material-course:serve"
116104
}
117-
},
118-
"lint": {
119-
"builder": "@angular-devkit/build-angular:tslint",
120-
"options": {
121-
"tsConfig": [
122-
"e2e/tsconfig.e2e.json"
123-
],
124-
"exclude": [
125-
"**/node_modules/**"
126-
]
127-
}
128105
}
129106
}
130107
}

0 commit comments

Comments
 (0)