Skip to content

Commit df47722

Browse files
committed
Upgrade to Angular 4
1 parent f0aa5c8 commit df47722

File tree

27 files changed

+706
-75
lines changed

27 files changed

+706
-75
lines changed

01-getting-started-with-angular2/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>Really Understanding Angular 2 - The Fundamentals</title>
4+
<title>Really Understanding Angular - The Fundamentals</title>
55
<meta name="viewport" content="width=device-width, initial-scale=1">
66

77
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
@@ -20,7 +20,7 @@
2020
<main class="l-main">
2121

2222
<div class="l-course-logo"></div>
23-
<div class="l-course-title">Getting Started with Angular 2 - The Fundamentals</div>
23+
<div class="l-course-title">Getting Started with Angular - The Fundamentals</div>
2424
<div class="l-lesson-title">Lessons</div>
2525

2626
<div class="l-course-content card card-strong">

01-getting-started-with-angular2/package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
{
22
"name": "angular2-for-beginnners",
3-
"description":"Angular 2 For Beginners - Course Lessons",
3+
"description": "Angular For Beginners - Course Lessons",
44
"version": "1.0.0",
55
"scripts": {
6-
"clean": "rimraf dist",
7-
"start": "npm run clean && ts-node lessons-server.ts"
6+
"clean": "./node_modules/.bin/rimraf dist",
7+
"start": "npm run clean && ./node_modules/.bin/ts-node lessons-server.ts"
88
},
99
"devDependencies": {
1010
"http-server": "^0.9.0",
1111
"rimraf": "~2.5.2"
1212
},
1313
"dependencies": {
14-
"@angular/common": "2.0.0",
15-
"@angular/compiler": "2.0.0",
16-
"@angular/core": "2.0.0",
17-
"@angular/http": "2.0.0",
18-
"@angular/platform-browser": "2.0.0",
19-
"@angular/platform-browser-dynamic": "2.0.0",
20-
"@angular/forms": "2.0.0",
21-
"@angular/router": "3.0.0",
22-
"body-parser": "^1.15.1",
23-
"express": "^4.13.4",
24-
"lodash": "^4.13.1",
25-
"rxjs": "5.0.0-beta.12",
26-
"systemjs": "^0.19.27",
27-
"zone.js": "^0.6.17",
28-
"ts-node": "^0.7.3",
29-
"typescript": "^1.8.10"
14+
"@angular/common": "4.0.0",
15+
"@angular/compiler": "4.0.0",
16+
"@angular/core": "4.0.0",
17+
"@angular/forms": "4.0.0",
18+
"@angular/http": "4.0.0",
19+
"@angular/platform-browser": "4.0.0",
20+
"@angular/platform-browser-dynamic": "4.0.0",
21+
"@angular/router": "4.0.0",
22+
"body-parser": "1.15.1",
23+
"express": "4.13.4",
24+
"lodash": "4.13.1",
25+
"rxjs": "5.1.0",
26+
"systemjs": "0.19.27",
27+
"ts-node": "3.0.2",
28+
"typescript": "2.2.0",
29+
"zone.js": "0.8.4"
3030
},
3131
"engines": {
3232
"node": "4.2.1",

01-getting-started-with-angular2/src/01-mvc-hello-world/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>Really Understanding Angular 2 - The Fundamentals</title>
4+
<title>Really Understanding Angular - The Fundamentals</title>
55
<meta name="viewport" content="width=device-width, initial-scale=1">
66

77
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/>
@@ -44,7 +44,7 @@
4444
<main class="l-main">
4545

4646
<div class="l-course-logo"></div>
47-
<div class="l-course-title">Really Understanding Angular 2 - The Fundamentals</div>
47+
<div class="l-course-title">Really Understanding Angular - The Fundamentals</div>
4848
<div class="l-lesson-title">MVC Hello World Component - Controllers and Templates</div>
4949

5050
<div class="l-course-content card card-strong lesson-1">

01-getting-started-with-angular2/src/02-template-syntax-properties/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>Really Understanding Angular 2 - The Fundamentals</title>
4+
<title>Really Understanding Angular - The Fundamentals</title>
55
<meta name="viewport" content="width=device-width, initial-scale=1">
66

77
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/>
@@ -44,7 +44,7 @@
4444
<main class="l-main">
4545

4646
<div class="l-course-logo"></div>
47-
<div class="l-course-title">Really Understanding Angular 2 - The Fundamentals</div>
47+
<div class="l-course-title">Really Understanding Angular - The Fundamentals</div>
4848
<div class="l-lesson-title">Template Syntax - Properties</div>
4949

5050
<div class="l-course-content card card-strong lesson-2">

01-getting-started-with-angular2/src/03-template-syntax-interpolation/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>Getting Started with Angular 2</title>
4+
<title>Getting Started with Angular</title>
55
<meta name="viewport" content="width=device-width, initial-scale=1">
66

77
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/>
@@ -44,7 +44,7 @@
4444
<main class="l-main">
4545

4646
<div class="l-course-logo"></div>
47-
<div class="l-course-title">Getting Started with Angular 2 - The Fundamentals</div>
47+
<div class="l-course-title">Getting Started with Angular - The Fundamentals</div>
4848
<div class="l-lesson-title">Template Syntax - Interpolation</div>
4949

5050
<div class="l-course-content card card-strong lesson">

01-getting-started-with-angular2/src/04-template-syntax-events/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>Really Understanding Angular 2 - The Fundamentals</title>
4+
<title>Really Understanding Angular - The Fundamentals</title>
55
<meta name="viewport" content="width=device-width, initial-scale=1">
66

77
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/>
@@ -44,7 +44,7 @@
4444
<main class="l-main">
4545

4646
<div class="l-course-logo"></div>
47-
<div class="l-course-title">Really Understanding Angular 2 - The Fundamentals</div>
47+
<div class="l-course-title">Really Understanding Angular - The Fundamentals</div>
4848
<div class="l-lesson-title">Template Syntax - Events and Introduction to Zones</div>
4949

5050
<div class="l-course-content card card-strong lesson-4">

01-getting-started-with-angular2/src/05-template-syntax-components-essentials/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>Really Understanding Angular 2 - The Fundamentals</title>
4+
<title>Really Understanding Angular - The Fundamentals</title>
55
<meta name="viewport" content="width=device-width, initial-scale=1">
66

77
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/>
@@ -45,7 +45,7 @@
4545
<main class="l-main">
4646

4747
<div class="l-course-logo"></div>
48-
<div class="l-course-title">Getting Started with Angular 2 - The Fundamentals</div>
48+
<div class="l-course-title">Getting Started with Angular - The Fundamentals</div>
4949
<div class="l-lesson-title">Components Essentials</div>
5050

5151
<div class="l-course-content card card-strong lesson">

01-getting-started-with-angular2/src/components-inputs-and-outputs/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>Really Understanding Angular 2 - The Fundamentals</title>
4+
<title>Really Understanding Angular - The Fundamentals</title>
55
<meta name="viewport" content="width=device-width, initial-scale=1">
66

77
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/>
@@ -43,7 +43,7 @@
4343
<main class="l-main">
4444

4545
<div class="l-course-logo"></div>
46-
<div class="l-course-title">Really Understanding Angular 2 - The Fundamentals</div>
46+
<div class="l-course-title">Really Understanding Angular - The Fundamentals</div>
4747

4848
<div class="l-course-content card card-strong lesson-1">
4949
<app></app>

01-getting-started-with-angular2/src/core-directives-ng-for/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>Getting Started With Angular 2 - The Fundamentals</title>
4+
<title>Getting Started With Angular - The Fundamentals</title>
55
<meta name="viewport" content="width=device-width, initial-scale=1">
66

77
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/>
@@ -44,7 +44,7 @@
4444
<main class="l-main">
4545

4646
<div class="l-course-logo"></div>
47-
<div class="l-course-title">Getting Started with Angular 2 - The Fundamentals</div>
47+
<div class="l-course-title">Getting Started with Angular - The Fundamentals</div>
4848
<div class="l-lesson-title">Core Directives - *ngFor</div>
4949

5050
<div class="l-course-content card card-strong lesson">

01-getting-started-with-angular2/src/core-directives-ngif/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>Getting Started With Angular 2 - The Fundamentals</title>
4+
<title>Getting Started With Angular - The Fundamentals</title>
55
<meta name="viewport" content="width=device-width, initial-scale=1">
66

77
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/>
@@ -44,7 +44,7 @@
4444
<main class="l-main">
4545

4646
<div class="l-course-logo"></div>
47-
<div class="l-course-title">Getting Started with Angular 2 - The Fundamentals</div>
47+
<div class="l-course-title">Getting Started with Angular - The Fundamentals</div>
4848
<div class="l-lesson-title">Core Directives - *ngIf</div>
4949

5050
<div class="l-course-content card card-strong lesson">

0 commit comments

Comments
 (0)