Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ng if section #55

Open
wants to merge 37 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
9d278db
Angular Core Deep Dive
Aug 28, 2018
f83c125
Angular Core Deep Dive
Aug 29, 2018
1c2590a
Angular Core Deep Dive
Aug 29, 2018
631b453
Angular Core Deep Dive
Sep 4, 2018
5972514
Angular Core Deep Dive
Sep 4, 2018
f4d658d
Angular Core Deep Dive
Sep 4, 2018
2069aa8
Angular Core Deep Dive
Sep 4, 2018
dfa2e82
Angular Core Deep Dive
jhades Sep 10, 2018
37daaf8
Angular Core Deep Dive
jhades Sep 14, 2018
c127a44
Angular Core Deep Dive
jhades Sep 17, 2018
04e8b2f
Angular Core Deep Dive
jhades Oct 1, 2018
7eeec8e
Angular Core Deep Dive
jhades Oct 22, 2018
77a6f14
Angular Core Deep Dive
jhades Oct 24, 2018
8974bb6
Angular Core Deep Dive
jhades Oct 24, 2018
11f711b
Angular Core Deep Dive Course
Oct 30, 2018
5a92b15
Angular Core Deep Dive Course
Nov 1, 2018
aa243f2
Angular Core Deep Dive Course
Nov 1, 2018
2ab853f
fix server startup issue
jhades Nov 20, 2018
1a50f3d
upgrade to Angular 8 and Node 12
jhades Jun 3, 2019
f531afb
upgrade to Angular 9
jhades Feb 18, 2020
ecc3850
upgrade to Angular 9
jhades Feb 18, 2020
d392359
upgrade to Angular 9
jhades Feb 24, 2020
385cbfa
upgrade to Angular 10
jhades Jun 29, 2020
52905e3
upgrade to Angular 10
jhades Jul 1, 2020
331452e
upgrade to Angular 11 and Node 14
jhades Nov 17, 2020
83752cf
Update README.md
jhades Nov 18, 2020
eac74f5
upgrade to Angular 12
jhades May 18, 2021
d4909f3
upgrade to Angular 12
jhades May 18, 2021
3e2c6d6
Upgrade to Angular 13 and Node 16
jhades Nov 25, 2021
3fedfca
upgrade to Angular 14
jhades Jun 13, 2022
ca3ef46
Upgrade to Angular 15 and Node 18
jhades Nov 28, 2022
a97a849
doing deep dive
Dec 16, 2022
a08b4ed
Angular Input and Output Decorators
Dec 22, 2022
7d1c67a
ngFor segment
Dec 22, 2022
d78cfca
Up through ViewChildren
Jan 11, 2023
6282abd
finished first part of course before directives
Feb 24, 2023
919eeb0
added class pictures
dtarvin Sep 13, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
!.vscode/extensions.json

# misc
/.angular/cache
/.sass-cache
/connect.lock
/coverage
Expand Down
13 changes: 2 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,14 @@

This repository contains the code of the [Angular Core Deep Dive](https://angular-university.io/course/angular-course).

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

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


# Installation pre-requisites

IMPORTANT: Please use the latest Node and especially NPM, to make sure the package-lock.json is used.

For running this project we need and npm installed on our machine. These are some tutorials to install node in different operating systems:

*Its important to install the latest version of Node*

- [Install Node and NPM on Windows](https://www.youtube.com/watch?v=8ODS6RM6x7g)
- [Install Node and NPM on Linux](https://www.youtube.com/watch?v=yUdHk-Dk_BY)
- [Install Node and NPM on Mac](https://www.youtube.com/watch?v=Imj8PgG3bZU)

IMPORTANT: Please use Node 18 (Long Term Support version). Note that Node 18 is not yet officially supported by the Angular CLI.

# Installing the Angular CLI

Expand Down
52 changes: 25 additions & 27 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,32 @@
],
"styles": [
{
"input": "node_modules/@angular/material/prebuilt-themes/indigo-pink.css"
"input": "node_modules/@angular/material/prebuilt-themes/indigo-pink.css",
"inject": true
},
"src/styles.css"
],
"scripts": []
"scripts": [
{
"input": "node_modules/document-register-element/build/document-register-element.js",
"inject": true
}
],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
"budgets": [
{
"type": "anyComponentStyle",
"maximumWarning": "6kb"
}
],
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
Expand All @@ -41,9 +59,7 @@
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true
Expand Down Expand Up @@ -76,7 +92,8 @@
"karmaConfig": "src/karma.conf.js",
"styles": [
{
"input": "node_modules/@angular/material/prebuilt-themes/indigo-pink.css"
"input": "node_modules/@angular/material/prebuilt-themes/indigo-pink.css",
"inject": true
},
"src/styles.css"
],
Expand All @@ -86,18 +103,6 @@
"src/assets"
]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"src/tsconfig.app.json",
"src/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
},
Expand All @@ -116,18 +121,11 @@
"devServerTarget": "angular-course:serve:production"
}
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": "e2e/tsconfig.e2e.json",
"exclude": [
"**/node_modules/**"
]
}
}
}
}
},
"defaultProject": "angular-course"
"cli": {
"analytics": "3ac3ddb5-53ee-4464-b4bb-1363d03123d0"
}
}
Loading