Skip to content

Commit 7ee2b2e

Browse files
committed
Angular Core Deep Dive
1 parent fa568c3 commit 7ee2b2e

File tree

2 files changed

+85
-3
lines changed

2 files changed

+85
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11

2-
## The Angular Core In Depth Course
2+
## Angular Core Deep Dive (Video Course)
33

4-
This repository contains the code of the [Angular Core In Depth Course](https://angular-university.io/course/angular-course).
4+
This repository contains the code of the [Angular Core Deep Dive](https://angular-university.io/course/angular-course).
55

66
This course repository is updated to Angular v6, and there is a package-lock.json file available, for avoiding semantic versioning installation issues.
77

8-
![Angular Core In Depth Course](https://s3-us-west-1.amazonaws.com/angular-university/course-images/angular-core-in-depth-small.png)
8+
![Angular Core Deep Dive](https://s3-us-west-1.amazonaws.com/angular-university/course-images/angular-core-in-depth-small.png)
99

1010

1111
# Installation pre-requisites

src/db-data.ts

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
2+
3+
export const COURSES: any = [
4+
5+
{
6+
id: 1,
7+
description: "Angular Core Deep Dive",
8+
iconUrl: 'https://s3-us-west-1.amazonaws.com/angular-university/course-images/angular-core-in-depth-small.png',
9+
longDescription: "A detailed walk-through of the most important part of Angular - the Core and Common modules",
10+
category: 'ADVANCED',
11+
lessonsCount: 10
12+
},
13+
{
14+
id: 2,
15+
description: "RxJs In Practice Course",
16+
iconUrl: 'https://s3-us-west-1.amazonaws.com/angular-university/course-images/rxjs-in-practice-course.png',
17+
longDescription: "Understand the RxJs Observable pattern, learn the RxJs Operators via practical examples",
18+
category: 'BEGINNER',
19+
lessonsCount: 10
20+
},
21+
{
22+
id: 3,
23+
description: "Angular for Beginners",
24+
iconUrl: 'https://angular-academy.s3.amazonaws.com/thumbnails/angular2-for-beginners-small-v2.png',
25+
longDescription: "Establish a solid layer of fundamentals, learn what's under the hood of Angular",
26+
category: 'BEGINNER',
27+
lessonsCount: 10
28+
},
29+
{
30+
id: 4,
31+
description: 'Angular Security Course - Web Security Fundamentals',
32+
longDescription: "Learn Web Security Fundamentals and apply them to defend an Angular / Node Application from multiple types of attacks.",
33+
iconUrl: 'https://s3-us-west-1.amazonaws.com/angular-university/course-images/security-cover-small-v2.png',
34+
category: 'ADVANCED',
35+
lessonsCount: 11
36+
},
37+
{
38+
id: 5,
39+
description: 'Angular PWA - Progressive Web Apps Course',
40+
longDescription: "<p class='course-description'>Learn Angular Progressive Web Applications, build the future of the Web Today.",
41+
iconUrl: 'https://s3-us-west-1.amazonaws.com/angular-university/course-images/angular-pwa-course.png',
42+
category: 'ADVANCED',
43+
lessonsCount: 8
44+
},
45+
{
46+
id: 6,
47+
description: 'Angular NgRx Store Reactive Extensions Architecture Course',
48+
longDescription: "Learn how to the Angular NgRx Reactive Extensions and its Tooling to build a complete application.",
49+
iconUrl: 'https://angular-academy.s3.amazonaws.com/thumbnails/ngrx-angular.png',
50+
category: 'ADVANCED'
51+
},
52+
{
53+
id: 7,
54+
description: 'Angular Advanced Library Laboratory: Build Your Own Library',
55+
longDescription: "Learn Advanced Angular functionality typically used in Library Development. Advanced Components, Directives, Testing, Npm",
56+
iconUrl: 'https://angular-academy.s3.amazonaws.com/thumbnails/advanced_angular-small-v3.png',
57+
category: 'ADVANCED'
58+
},
59+
{
60+
id: 8,
61+
description: 'The Complete Typescript Course',
62+
longDescription: "Complete Guide to Typescript From Scratch: Learn the language in-depth and use it to build a Node REST API.",
63+
iconUrl: 'https://angular-academy.s3.amazonaws.com/thumbnails/typescript-2-small.png',
64+
category: 'BEGINNER'
65+
},
66+
{
67+
id: 9,
68+
description: 'Rxjs and Reactive Patterns Angular Architecture Course',
69+
longDescription: "Learn the core RxJs Observable Pattern as well and many other Design Patterns for building Reactive Angular Applications.",
70+
iconUrl: 'https://s3-us-west-1.amazonaws.com/angular-academy/blog/images/rxjs-reactive-patterns-small.png',
71+
category: 'BEGINNER'
72+
},
73+
{
74+
id: 10,
75+
description: "Angular Material Course",
76+
iconUrl: "https://s3-us-west-1.amazonaws.com/angular-university/course-images/material_design.png",
77+
longDescription: "Build Applications with the official Angular Widget Library",
78+
category: 'ADVANCED'
79+
}
80+
81+
];
82+

0 commit comments

Comments
 (0)