Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Build Real World Development Projects Using Angular
Rating: 4.1 out of 5(84 ratings)
2,071 students

Build Real World Development Projects Using Angular

Build Real World Angular Development Projects Practically
Last updated 10/2025
English

What you'll learn

  • Master the essential Angular concepts, Troubleshoot common runtime errors
  • Use the deep understanding of the Angular fundamentals to quickly establish yourself as a frontend developer
  • Understand how Angular works and how it interacts with Backends
  • Develop modern, complex, responsive and scalable web applications with Angular
  • Fully understand the architecture behind an Angular application and how to use it
  • Build real-time apps that not only work great but also look awesome!

Course content

8 sections132 lectures18h 47m total length
  • Introduction to the Project - Image Sharing & Social Network with Angular1:39

    Build an image sharing social network wall with Angular, enabling posts with captions, likes, and comments while learning components, forms, services, Angular Material library, and cloud image uploads.

  • Initializing Angular Project4:18

    initialize a new angular project by installing node.js and angular cli, verify versions, run ng new social network wall, then ng serve to view locally.

  • Creating Topbar Component4:28

    Create a top bar component in an Angular app by generating the component, wiring its HTML and CSS, and applying a flex container with a book logo.

  • Adding Angular Material3:44
  • Creating Login Component8:02

    Create a login component in Angular, route it to /login with a router outlet, and implement an Angular Material form for email and password with login and create account buttons.

  • Creating Create Account Component3:37

    Create an account component, wire the /create-account route, and reuse the login template with email, password, and username fields, plus a create account button and login link.

  • Angular Forms and Form Binding13:59

    Shows building and binding reactive forms in Angular, including login and create account forms with form groups, form controls, validators, and live value display, plus routing setup.

  • Displaying Error Messages9:53
  • Angular Services and HTTP Client Module14:06

    Learn how to build and use an Angular service to perform HTTP calls, create a user via a post request, and connect to a mock JSON server for front-end data.

  • Adding Login Logic13:12

    Implement login by fetching user by email via http in the user service, returning a promise, and subscribe in login component to compare passwords and show snack bar messages.

  • Configuring Redirects after Login14:29
  • Using Local Storage to Save User Data7:31

    Persist user data in local storage to guard the post page, redirecting to login when no user exists. Save and clear the user on login and logout to maintain session.

  • Adding Template to Posts Component5:09

    Add a template to the post component using net card and material card, define a post schema, and prepare cloud image upload and storage with Angular Firebase.

  • Configuring AngularFire5:28
  • Uploading Images to Firebase.13:13

    Learn to upload an image to Firebase storage from an Angular app using a Material file input, handling file selection, upload task, and retrieving the image download URL for posts.

  • Creating Posts15:26

    Learn to save a post by sending an http post request to the backend, create a post service, and push a post object with username, text, image, likes, and comments.

  • Logic for Like Button13:57
  • Logic for Comment Button13:19
  • Download The Project Files0:01

Requirements

  • Basic Knowledge of Angular

Description

Angular puts the developer experience at the forefront.

JavaScript is known to introduce some of the most bizarre behavior known to developers. To alleviate headaches Angular provides full support for TypeScript, which offers type safety in our programs.

TypeScript existed for 4 years before even Angular became a framework, and the creators of Angular recognized the necessity for type safety in large enterprise apps to boost productivity and diminish bugs in production code.

So they opted to be one of the earliest adopters in the JavaScript ecosystem.

In my view this was the right move. TypeScript has seen widespread adoption and is a favorite among the community. In the most recent State of JavaScript Survey, 93% of responders were satisfied with TypeScript, so it appears Angular made the right call.

Maintaining a large enterprise application can be a nightmare without a proper setup. Before writing application logic, a strong foundation must be available to allow code reuse and scalability.

This is why we use frameworks like Angular.

Angular introduces a set of features that encourage developers to adopt the best design pattern practices in your app. Some examples are singletons, dependency injection, and factory functions. These are design patterns that we can take advantage of right out of the box.

Angular is a framework developed by Google. The words "complacent" or "stagnant" are not the type of words that are associated with a company like Google.

You can expect Google to properly maintain its framework with the latest and best practices in mind. In fact, the lead developers have pledged to release major versions every 6 months. It's like having Christmas twice a year!

Who this course is for:

  • Beginners in Angular