Angular - The Complete Guide (2025 Edition)
- Description
- Curriculum
- FAQ
- Reviews
Join the most comprehensive and bestselling Angular course on Udemy and learn all about this amazing framework from the ground up, in great depth!
This course starts from scratch, you neither need to know Angular 1 nor Angular 2!
From Setup to Deployment, this course covers it all! You’ll learn all about Components, Directives, Services, Forms, Http Access, Authentication, Optimizing an Angular App with Modules and Offline Compilation and much more – and in the end: You’ll learn how to deploy an application!
But that’s not all! This course will also show you how to use the Angular CLI and feature a complete project, which allows you to practice the things learned throughout the course!
And if you do get stuck, you benefit from an extremely fast and friendly support – both via direct messaging or discussion. You have my word! 😉
Angular is one of the most modern, performance-efficient and powerful frontend frameworks you can learn as of today. It allows you to build great web apps which offer awesome user experiences! Learn all the fundamentals you need to know to get started developing Angular applications right away.
Hear what my students have to say
“Absolutely fantastic tutorial series. I cannot thank you enough. The quality is first class and your presentational skills are second to none. Keep up this excellent work. You really rock! – Paul Whitehouse”
“The instructor, Max, is very enthusiastic and engaging. He does a great job of explaining what he’s doing and why rather than having students just mimic his coding. Max was also very responsive to questions. I would recommend this course and any others that he offers. Thanks, Max!”
“As a person new to both JavaScript and Angular 2 I found this course extremely helpful because Max does a great job of explaining all the important concepts behind the code. Max has a great teaching ability to focus on what his audience needs to understand.”
This Course uses TypeScript
TypeScript is the main language used by the official Angular team and the language you’ll mostly see in Angular tutorials. It’s a superset to JavaScript and makes writing Angular apps really easy. Using it ensures, that you will have the best possible preparation for creating Angular apps. Check out the free videos for more information.
TypeScript knowledge is, however, not required – basic JavaScript knowledge is enough.
Why Angular?
Angular is the next big deal. Being the successor of the overwhelmingly successful Angular.js framework it’s bound to shape the future of frontend development in a similar way. The powerful features and capabilities of Angular allow you to create complex, customizable, modern, responsive and user friendly web applications.
Angular is faster than Angular 1 and offers a much more flexible and modular development approach. After taking this course you’ll be able to fully take advantage of all those features and start developing awesome applications immediately.
Due to the drastic differences between Angular 1 and Angular (= Angular 2+) you don’t need to know anything about Angular.js to be able to benefit from this course and build your futures projects with Angular.
Get a very deep understanding of how to create Angular applications
This course will teach you all the fundamentals about modules, directives, components, databinding, routing, HTTP access and much more! We will take a lot of deep dives and each section is backed up with a real project. All examples showcase the features Angular offers and how to apply them correctly.
Specifically you will learn:
-
Which architecture Angular uses
-
How to use TypeScript to write Angular applications
-
All about directives and components, including the creation of custom directives/ components
-
How databinding works
-
All about routing and handling navigation
-
What pipes are and how to use them
-
How to send HTTP requests (e.g. to REST APIs)
-
What dependency injection is and how to use it
-
How to use modules in Angular
-
How to optimize your (bigger) Angular applications
-
An introduction to NgRx and complex state management
-
We will build a major project in this course so that you can practice all concepts
-
And so much more!
Pay once, benefit a lifetime!
Don’t lose any time, gain an edge and start developing now!
-
1Welcome To The Course!Video lesson
Let me introduce you to this course and give a rough outline over what you're going to learn!
-
2What Exactly Is Angular?Video lesson
So many Angular versions! What's up with them and which version does this course cover?
-
3Why Would You Use Angular?Video lesson
Enough of the talking, let's create our first Angular project and view our first app in the browser.
-
4Angular's Evolution & StabilityVideo lesson
-
5Creating A New Angular ProjectVideo lesson
-
6Setting Up An Angular Development EnvironmentVideo lesson
Let's edit our first app!
-
7About This CourseVideo lesson
Enough of the talking, let's create our first Angular project and view our first app in the browser.
-
8Course Setup & ResourcesText lesson
-
9Module IntroductionVideo lesson
-
10A New Starting Project & Analyzing The Project StructureVideo lesson
-
11Understanding Components & How Content Ends Up On The ScreenVideo lesson
-
12Creating a First Custom ComponentVideo lesson
-
13[Optional] JavaScript Refresher: Classes, Properties & MoreText lesson
-
14Configuring the Custom ComponentVideo lesson
-
15Using the Custom ComponentVideo lesson
-
16Styling the Header Component & Adding An ImageVideo lesson
-
17Managing & Creating Components with the Angular CLIVideo lesson
-
18Styling & Using Our Next Custom ComponentVideo lesson
-
19Preparing User Data (To Output Dynamic Content)Video lesson
-
20Storing Data in a Component ClassVideo lesson
-
21Outputting Dynamic Content with String InterpolationVideo lesson
-
22Property Binding & Outputting Computed ValuesVideo lesson
-
23Attribute BindingText lesson
-
24Using Getters For Computed ValuesVideo lesson
-
25Listening to Events with Event BindingVideo lesson
-
26Managing State & Changing DataVideo lesson
-
27A Look Behind The Scenes Of Angular's Change Detection MechanismVideo lesson
-
28Introducing SignalsVideo lesson
-
29We Need More Flexible Components!Video lesson
-
30Defining Component InputsVideo lesson
-
31Required & Optional InputsVideo lesson
-
32Using Signal InputsVideo lesson
-
33We Need Custom Events!Video lesson
-
34Working with Outputs & Emitting DataVideo lesson
-
35Using the output() FunctionVideo lesson
-
36Adding Extra Type Information To EventEmitterVideo lesson
-
37Exercise: Create a Configurable ComponentVideo lesson
-
38TypeScript: Working With Potentially Undefined Values & Union TypesVideo lesson
-
39Accepting Objects As Inputs & Adding Appropriate TypingsVideo lesson
-
40TypeScript: Type Aliases & InterfacesVideo lesson
-
41Outputting List ContentVideo lesson
-
42Outputting Conditional ContentVideo lesson
-
43Legacy Angular: Using ngFor & ngIfVideo lesson
-
44Adding More Components to the Demo AppVideo lesson
-
45Outputting User-specific TasksVideo lesson
-
46Outputting Task Data in the Task ComponentVideo lesson
-
47Storing Data Models in Separate FilesVideo lesson
-
48Dynamic CSS Styling with Class BindingsVideo lesson
-
49More Component Communication: Deleting TasksVideo lesson
-
50Creating & Conditionally Rendering Another ComponentVideo lesson
-
51Managing The "New Task" DialogVideo lesson
-
52Using Directives & Two-Way-BindingVideo lesson
-
53Signals & Two-Way-BindingVideo lesson
-
54Handling Form SubmissionVideo lesson
-
55Using the Submitted DataVideo lesson
-
56Content Projection with ng-contentVideo lesson
-
57Transforming Template Data with PipesVideo lesson
-
58Getting Started with ServicesVideo lesson
-
59Getting Started with Dependency InjectionVideo lesson
-
60More Service Usage & Alternative Dependency Injection MechanismVideo lesson
-
61Time to Practice: ServicesVideo lesson
-
62Using localStorage for Data StorageVideo lesson
-
63Module SummaryVideo lesson
-
64Module IntroductionVideo lesson
-
65A First Introduction To Angular Modules (NgModule)Video lesson
-
66Creating a First Empty ModuleVideo lesson
-
67Bootstrapping Apps with Angular ModulesVideo lesson
-
68Declaring & Using ComponentsVideo lesson
-
69A First SummaryVideo lesson
-
70Migrating All Components To Use ModulesVideo lesson
-
71Creating & Using Shared ModulesVideo lesson
-
72Creating More Complex Module-based App StructuresVideo lesson
-
73Module Introduction & Starting ProjectVideo lesson
-
74Exercise HintsText lesson
-
75Adding a Header Component With An ImageVideo lesson
-
76Adding a User Input ComponentVideo lesson
-
77Handling Form SubmissionVideo lesson
-
78Extracting Values with Two-Way-BindingVideo lesson
-
79Calculating the Annual Investment DataVideo lesson
-
80Cross-Component Communication with OutputsVideo lesson
-
81Creating & Using a Data ModelVideo lesson
-
82Passing Data from Parent to Child with InputsVideo lesson
-
83Outputting Data in a TableVideo lesson
-
84Formatting Output with a PipeVideo lesson
-
85Using Signals & Resetting The Form After SubmissionVideo lesson
-
86Using a Service for Cross-Component CommunicationVideo lesson
-
87Using Signals in ServicesVideo lesson
-
88Migrating to Angular ModulesVideo lesson
-
89Module SummaryVideo lesson
