We may earn an affiliate commission when you visit our partners.
Course image
Udemy logo

Angular - The Complete Guide (2024 Edition)

Maximilian Schwarzmüller

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.

Read more

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.

Enroll now

What's inside

Learning objectives

  • Develop modern, complex, responsive and scalable web applications with angular
  • Fully understand the architecture behind an angular application and how to use it
  • Use the gained, deep understanding of the angular fundamentals to quickly establish yourself as a frontend developer
  • Create single-page applications with one of the most modern javascript frameworks out there

Syllabus

Students will know how to create a new Angular App, how to make basic changes to it and what to expect from this course

Welcome to this course! Let me introduce myself and explain what the course is about!

Read more

First things first! What is Angular? Why would you want to learn it? This lecture helps answering this question.

Learning alone is absolutely fine but finding learning partners might be a nice thing, too. Our learning community is a great place to learn and grow together - of course it's 100% free and optional!

So many Angular versions! What's up with them and which version does this course cover?

Got issues using the CLI, setting up a project or simply want to learn more about it? Check out this lecture.

Enough of the talking, let's create our first Angular project and view our first app in the browser.

Let's edit our first app!

How is this course structured? This lecture answers the question and explains what you're going to learn!

Of course you can simply go through all the lectures, but to get the most out of the course, you should consider the advises given in this lecture.

Angular uses TypeScript. What does that mean for you?

Optional: TypeScript Quick Introduction

A lot of sections of this course will start with a basic setup - this lecture explains how that basic setup is created with the CLI.

Do you get some strange error? Are you stuck? Have a look at the source code of this course.

Students will understand the base syntax of Angular, the core features and be able to use that knowledge to build first apps.

Let me introduce you to the module and explain what you're going to learn.

We saw our first App run in the browser but do you really know how it got there? This lecture answers the question.

Angular is all about Components! This lectures takes a closer look and explains what Components really are.

Thus far, we worked with the AppComponent. Time to change this and create our first own component.

Did you recognize that AppModule file? It's super important - this lecture explains what it's about!

Working with Standalone Components

Now that we learned how to create and register our own components, let's now dive into using them.

We can also use the CLI to create components. This lecture explains how that then works and also how you may nest components.

A Component needs to have a Template. It's an absolute must. This lectures dives deeper into templates.

Whilst a Component is required to have a template, Styles are optional. This lectures explains how you may add styling.

The Selector of a Component is important if you want to include it in another template. This lecture explains how that selector actually works and what to watch out for.

Practicing Components
[OPTIONAL] Assignment Solution

Enough about Components for now - let's finally output more dynamic content now. Databinding is super important when it comes to that. This lectures explains what Databinding is.

One of the simplest forms of Databinding is String Interpolation which allows you to output text in your template. This lecture takes a closer look.

Property Binding is another form of Databinding - also related to outputting content. Learn more about it in this lecture.

Since both Property Binding and String Interpolation are related to outputting content, which one should you use? This lecture helps you with that decision!

So far, we only passed data to the template. What if we want to react to (User) Events? Event Binding to the rescue!

To which Properties and Events can you bind? This article should be helpful.

When we're talking about Events, we have to consider passing data. This lecture explains how that works.

Important: FormsModule is Required for Two-Way-Binding!

You can also combine event and property binding - with Two-Way-Databinding. Learn more about it in this lecture.

We learned about the different forms of Databinding, let's now combine them!

Practicing Databinding

Directives are another important building block in Angular apps. Learn more about it in this lecture.

ngIf is one of the built-in directives - it's super helpful if you want to output data dynamically.

ngIf is not limited to the usage you learned in the last lecture. Learn how to use it together with an else condition in this lecture.

Angular 17: Alternative "if" Syntax

Want to change some styles dynamically? ngStyle is what you're looking for.

Kind of related to the dynamic styling - you can also apply CSS classes dynamically with ngClass.

What if you wanted to output lists (e.g. an array)? ngFor is there for you.

Angular 17: Alternative "for" Syntax
Practicing Directives

ngFor also allows you to get the Index of the current iteration - this lecture explains how that works.

Students will be able to apply the concepts learned in the last section to a real project.

Time to get started with the Course Project.

How should the Angular app we're building look like? Let's plan which features and components we need.

This is an important one - make sure to not skip this lecture!

Let's get our hands dirty and set the app up.

Time to create the components we planned to create. Try doing it on your own first!

With the components created in the last lecture, it's now time to use them so that we can see something.

Later in this course, we want to switch pages - setting up a navigation bar sounds like a great idea for that.

Our navbar collapses and we don't offer a hamburger menu. Feel free to implement one on your own or change the code as outlined here.

We're also going to use some data in this project - time to create a model for that data.

With the model and the component created, we can now add some content to our component template.

In the end, we want to have more than one recipe, so let's prepare our template to output such a list.

We also want to display some detailed information about selected recipes, so let's add the appropriate code.

We worked on the Recipe Components, let's now do the same for the shopping list.

As with the Recipe, we're also going to use some Ingredients in our app - let's add the respective model.

With the model added, we can work on outputting some ingredients.

We also want to be able to add new Ingredients to the Shopping List, so let's add the respective feature.

Part one of the app is finished. We achieved a lot but a lot of features are also still missing - time to move on and learn more about Angular.

Students will understand how to debug their own apps and find (and fix) errors.

Things don't always go the way you want them to go. Learn how to read Angular's error messages.

It can be incredibly useful to debug your app in the browser - learn more in this lecture.

Students will have a better understanding of Components and Databinding and know how to use some advanced concepts related to these features.

We already learned some things about components but now it's time to dive deeper into them!

This lecture explains how you may split an existing app into multiple new components.

You already learned about property and event binding - but you didn't learn everything about it. Time to do so now.

You're not limited to binding to built-in properties. Indeed, binding to custom property is a key feature of Angular apps. Time to learn more about it.

Sometimes, you want to use a different property name outside of a component than inside of it. This lecture explains how to do that.

As with property binding, you can also bind to custom events.

You may also assign an alias to your custom events.

Let me summarize the things you learned about property and event binding.

Angular allows you to apply different styles to different components - this lecture explains how that works.

Let's dive deeper into View Encapsulation.

Sometimes, you want to get access to some of your HTML elements. Local references allow you to do just that.

@ViewChild() in Angular 8+

You got the local references in the templates, but you can also access your elements directly from the TypeScript file - this lecture explains how that works.

Want to pass structured content (e.g. HTML code) into another component? Learn more about it in this lecture.

Components follow a certain lifecycle - this lecture dives deeper into this topic.

Let's see those lifecycle hooks in action.

How can we access template elements in different lifecycle hooks? Let's find out ...

@ContentChild() in Angular 8+

You may also get access to the content projected into a component - let's also see how that works in lifecycle hooks.

Let me wrap up this section about Components  & Databinding

Practicing Property & Event Binding and View Encapsulation
Students will know how to apply the features and tools learned in the last section to a real app.

Now that we learned how to pass data to components, let's enhance our app.

Let's use the new features to add a first version of our app navigation - using custom events and ngIf.

We can not only listen to our own events, we can also pass data to components now, so let's do so.

Let's build a more complex chain of custom property and event binding to pass data around.

Good to know

Know what's good
, what to watch for
, and possible dealbreakers
Helps students reach their full potential with guidance in different modules and sections of this course
Emphasizes Angular 2+ and helps bridge gaps between Angular 1 and Angular 2+
Suitable for beginners and those with some experience in JavaScript
Great stimulation for practicing creative thinking
Taught by Maximilian Schwarzmüller, a recognized expert in frontend web development and Angular
Uses TypeScript, the preferred language by the official Angular team
Provides hands-on practice of Angular concepts and development
Teaches fundamental and advanced Angular concepts, enabling efficient web app development
Responsive support for students through direct messaging or discussion
Highly valued course with positive student feedback
Covers a comprehensive range of topics, ensuring a strong foundation in Angular
Includes a complete project for comprehensive practice and reinforcement of learned concepts
Designed to prepare students for careers as frontend developers with a focus on Angular
Provides opportunities to build Single-Page Applications (SPAs) using Angular

Save this course

Save Angular - The Complete Guide (2024 Edition) to your list so you can find it easily later:
Save

Reviews summary

Angular complete guide

According to students, this Angular course is outstanding and well-recommended for beginners. The course is thorough and offers practical examples for every concept.
Excellent choice for those new to Angular
"if your going to start learn Angular"
Concepts are explained thoroughly
"Max has given a detailed explanation"
Clear and easy to follow examples
"detailed explanation with perfect coding example for every topic"

Career center

Learners who complete Angular - The Complete Guide (2024 Edition) will develop knowledge and skills that may be useful to these careers:
Frontend Developer
Develop the frontend of web applications using the Angular framework. This course teaches all the fundamentals about modules, directives, components, databinding, routing, HTTP access and much more. You will learn how to create complex, customizable, modern, responsive and user friendly web applications.
Full-Stack Developer
Design, develop, test, and deploy web applications using the Angular framework. This course provides a complete overview of Angular, covering topics such as components, directives, services, forms, Http access, authentication, and optimizing an Angular app with modules and offline compilation.
Software Engineer
Develop and maintain software applications using the Angular framework. This course covers the fundamentals of Angular, including components, directives, services, forms, Http access, authentication, and optimizing an Angular app with modules and offline compilation.
Web Developer
Design and develop websites and web applications using the Angular framework. This course teaches the fundamentals of Angular, including components, directives, services, forms, Http access, authentication, and optimizing an Angular app with modules and offline compilation.
Angular Developer
Develop and maintain Angular applications. This course provides a deep understanding of Angular, covering topics such as components, directives, services, forms, Http access, authentication, and optimizing an Angular app with modules and offline compilation.
TypeScript Developer
Develop and maintain TypeScript applications. This course may be helpful for those interested in learning Angular, as it covers the fundamentals of TypeScript, which is the main language used in Angular development.
JavaScript Developer
Develop and maintain JavaScript applications. This course may be helpful for those interested in learning Angular, as it covers the fundamentals of JavaScript, which is the main language used in Angular development.
UI Developer
Design and develop user interfaces for web applications. This course may be helpful for those interested in learning Angular, as it covers the fundamentals of Angular, which is a popular framework for building user interfaces.
Web Designer
Design and develop websites and web applications. This course may be helpful for those interested in learning Angular, as it covers the fundamentals of Angular, which is a popular framework for building web applications.
Front-End Engineer
Develop and maintain the front end of web applications. This course may be helpful for those interested in learning Angular, as it covers the fundamentals of Angular, which is a popular framework for building front ends.
Mobile Developer
Develop and maintain mobile applications. This course may be helpful for those interested in learning Angular, as it covers the fundamentals of Angular, which can be used to build mobile applications.
Product Manager
Manage the development and launch of new products. This course may be helpful for those interested in learning Angular, as it covers the fundamentals of Angular, which can be used to build web applications.
Technical Writer
Document and explain technical products and services. This course may be helpful for those interested in learning Angular, as it covers the fundamentals of Angular, which can be used to build web applications.
Recruiter
Find and hire qualified candidates for open positions. This course may be helpful for those interested in learning Angular, as it covers the fundamentals of Angular, which can be used to build tools for recruiting.
Teacher
Teach students about a variety of subjects. This course may be helpful for those interested in learning Angular, as it covers the fundamentals of Angular, which can be used to build educational materials.

Reading list

We've selected ten books that we think will supplement your learning. Use these to develop background knowledge, enrich your coursework, and gain a deeper understanding of the topics covered in Angular - The Complete Guide (2024 Edition).
Guide to JavaScript that is written in a clear and concise style. It covers all the essential topics, from the basics of the language to more advanced concepts such as closures and object-oriented programming. It great resource for both beginners and experienced JavaScript developers.
Guide to the good parts of JavaScript. It covers the essential parts of the language that you need to know to write good JavaScript code. It great resource for both beginners and experienced JavaScript developers.
Collection of JavaScript techniques that can be used to improve the performance and quality of your JavaScript code. It great resource for both beginners and experienced JavaScript developers.
Guide to the latest features and best practices in JavaScript. It covers a wide range of topics, from the basics of the language to more advanced concepts such as async/await and WebAssembly. It great resource for both beginners and experienced JavaScript developers.
Collection of recipes for Angular 2. It covers a wide range of topics, from basic tasks to more advanced topics such as routing and dependency injection. It great resource for developers who want to learn how to solve common problems in Angular 2.
Collection of projects for Angular 2. It covers a wide range of topics, from building simple applications to more complex applications such as e-commerce applications and games. It great resource for developers who want to learn how to build real-world Angular 2 applications.
Comprehensive guide to Angular 2 development with TypeScript. It covers all the essential topics, from setting up your development environment to building complex applications. It great resource for both beginners and experienced Angular 2 developers.
Comprehensive guide to Angular 2. It covers all the essential topics, from setting up your development environment to building complex applications. It great resource for both beginners and experienced Angular 2 developers.

Share

Help others find this course page by sharing it with your friends and followers:

Similar courses

Here are nine courses similar to Angular - The Complete Guide (2024 Edition).
Our mission

OpenCourser helps millions of learners each year. People visit us to learn workspace skills, ace their exams, and nurture their curiosity.

Our extensive catalog contains over 50,000 courses and twice as many books. Browse by search, by topic, or even by career interests. We'll match you to the right resources quickly.

Find this site helpful? Tell a friend about us.

Affiliate disclosure

We're supported by our community of learners. When you purchase or subscribe to courses and programs or purchase books, we may earn a commission from our partners.

Your purchases help us maintain our catalog and keep our servers humming without ads.

Thank you for supporting OpenCourser.

© 2016 - 2024 OpenCourser