Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Angular for Enterprise Applications
Angular for Enterprise Applications

Angular for Enterprise Applications: Build scalable Angular apps using the minimalist Router-first architecture , Third Edition

eBook
€20.98 €29.99
Paperback
€37.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
Table of content icon View table of contents Preview book icon Preview Book

Angular for Enterprise Applications

Forms, Observables, Signals, and Subjects

In this chapter, we’ll work on a simple weather app, LocalCast Weather, using Angular and a third-party web API from OpenWeatherMap.org. The source code for this project is provided on GitHub at https://github.com/duluca/local-weather-app, including various stages of development in the projects folder.

If you’ve never used Angular before and need an introduction to Angular essentials, I recommend checking out What is Angular? on Angular.dev at https://angular.dev/overview and going through the Learn Angular Tutorial at https://angular.dev/tutorials/learn-angular.

Feeling brave? Just type the following into your terminal:

$ npm create @angular

LocalCast Weather is a simple app that demonstrates the essential elements that make up an Angular application, such as components, standalone components, modules, providers, pipes, services, RxJS, unit testing, e2e using Cypress, environment variables, Angular...

Technical requirements

The most up-to-date versions of the sample code for the book are on GitHub at the repository linked shortly. The repository contains the final and completed state of the code. You can verify your progress at the end of this chapter by looking for the end-of-chapter snapshot of code under the projects folder.

For Chapter 2:

  1. Clone the https://github.com/duluca/local-weather-app repo.
  2. Execute npm install on the root folder to install dependencies.
  3. The beginning state of the project is reflected at:
    projects/stage5
    
  4. The end state of the project is reflected at:
    projects/stage6
    
  5. Add the stage name to any ng command to act only on that stage:
    npx ng build stage6
    

Note that the dist/stage6 folder at the root of the repository will contain the compiled result.

Beware that the source code provided in the book and the version on GitHub are likely to be...

Great UX should drive implementation

Creating an easy-to-use and rich User Experience (UX) should be your main goal. You shouldn’t pick a design just because it’s easiest to implement. However, often, you’ll find a great UX that is simple to implement in the front end of your app but a lot more difficult on the back end. Consider google.com’s landing page:

A screenshot of a google search  Description automatically generated with medium confidence

Figure 2.2: Google’s landing page

In this context, Google Search is just a simple input field with two buttons. Easy to build, right? That simple input field unlocks some of the world’s most sophisticated and advanced software technologies backed by a global infrastructure of custom-built data centers and Artificial Intelligence (AI). It is a deceptively simple and insanely powerful way to interact with users. You can augment user input by leveraging modern web APIs like GeoLocation and add critical context to derive new meaning from user input. So, when the user types in Paris...

Reactive versus template-driven forms

Now, we’ll implement the search bar on the home screen of the application. The next user story states Display forecast information for current location, which may be taken to imply an inherent GeoLocation functionality. However, as you may note, GeoLocation is a separate task. The challenge is that with native platform features such as GeoLocation, you are never guaranteed to receive the actual location information. This may be due to signal loss issues on mobile devices, or the user may simply refuse to give permission to share their location information.

First and foremost, we must deliver a good baseline UX and implement value-added functionality such as GeoLocation only afterward. In stage5, the status of the project is represented on the Kanban board, as captured in the following snapshot:

A screenshot of a chat  Description automatically generated with medium confidence

Figure 2.3: GitHub project Kanban board

We’ll implement the Add city search capability card (which captures a user story...

Component interaction with BehaviorSubject

To update the current weather information, we need the citySearch component to interact with the currentWeather component. There are four main techniques to enable component interaction in Angular:

  • Global events
  • Parent components listening for information bubbling up from children components
  • Sibling, parent, or children components within a module that works off of similar data streams
  • Parent components passing information to children components

Let’s explore them in detail in the following sections.

Global events

This technique has been leveraged since the early days of programming in general. In JavaScript, you may have achieved this with global function delegates or jQuery’s event system. In AngularJS, you may have created a service and stored variables within it.

In Angular, you can still create a root-level service, store values in it, use Angular’s EventEmitter class...

Managing subscriptions

Subscriptions are a convenient way to read a value from a data stream for your application logic. If unmanaged, they can create memory leaks in your application. A leaky application will consume ever-increasing amounts of RAM, eventually leading the browser tab to become unresponsive, leading to a negative perception of your app and, even worse, potential data loss, which can frustrate end users.

The source of a memory leak may not be obvious. In CurrentWeatherComponent, we inject WeatherSevice to access the value of BehaviorSubject, currentWeather$. If we mismanage subscriptions,currentWeather$, we can end up with leaks in the component or the service.

Lifecycle of services

By default, Angular services are shared instance services or singletons automatically registered to a root provider. This means that, once created in memory, they’re kept alive as long as the app or feature module they’re a part of remains in memory. See the following...

Coding in the reactive paradigm

As covered in Chapter 1, Angular’s Architecture and Concepts, we should only subscribe to an observable stream to activate it. If we treat a subscribe function as an event handler, we implement our code imperatively.

Seeing anything other than an empty subscribe() call in your code base should be considered a red flag because it deviates from the reactive paradigm.

In reactive programming, when you subscribe to an event in a reactive stream, you shift your coding paradigm from reactive programming to imperative programming. There are two places in our application where we subscribe, one in CurrentWeatherComponent, and the other in CitySearchComponent.

Let’s start by fixing CurrentWeatherComponent so we don’t mix paradigms.

Binding to an observable with an async pipe

Angular has been designed to be an asynchronous framework from the ground up. You can get the most out of Angular by staying in the reactive...

Chaining API calls

Currently, our app can only handle 5-digit numerical postal or zip codes from the US. A postal code such as 22201 is easy to differentiate from a city name with a simplistic conditional such as typeof search === 'string'. However, postal codes can vary widely from country to country, the UK being a great example, with postal codes such as EC2R 6AB. Even if we had a perfect understanding of how postal codes are formatted for every country, we still couldn’t ensure that the user didn’t fat-finger a slightly incorrect postal code. Today’s sophisticated users expect web applications to be resilient toward such mistakes. However, as web developers, we can’t be expected to code up a universal postal code validation service by hand. Instead, we need to leverage an external service before we send our request to OpenWeatherMap APIs. Let’s explore how we can chain back-to-back API calls that rely on each other.

After...

Using Angular Signals

A signal is a reactivity primitive that keeps track of its value changing over time. Angular Signals implements this primitive to granularly sync the application state with the DOM. By focusing on granular changes in state and only the relevant DOM nodes, the number and severity of change detection operations are significantly reduced. As covered in Chapter 1, Angular’s Architecture and Concepts, change detection is one of the most expensive operations that the Angular framework performs. As an app grows in complexity, change detection operations may be forced to traverse or update larger parts of the DOM tree. As the number of interactive elements increases in your app, change detection events occur more frequently. App complexity combined with the frequency of events can introduce significant performance issues, resulting in slow or choppy rendering of the app. Usually, there’s no quick fix for a problem like this. So, it is critical to understand...

Generating apps with ChatGPT

Let’s see what result we get if we ask ChatGPT to generate a weather app. In August 2023, I asked ChatGPT to generate a weather app using GPT-4 with the CodeInterpreter plugin. I gave it the following prompt:

Write an Angular app that displays real-time weather data from openweathermap.org APIs, using Angular Material, with a user input that accepts city name, country, or postal code as input.

After making a few minor corrections, this is the result I got:

A screenshot of a computer  Description automatically generated

Figure 2.11: ChatGPT weather app – August 2023

ChatGPT created a very simple and straightforward app for me, with a weather-display component using two-way binding for the input field. The service call was correctly implemented in a dedicated weather service triggered by the Fetch Weather button. To achieve similar results to the LocalCast app we built, we would have to provide a prompt with far more technical details. Non-technical people won’t know...

Summary

In this chapter, you learned how to create search-as-you-type functionality using MatInput, validators, reactive forms, and data-stream-driven handlers. You became aware of two-way binding and template-driven forms. You also learned about different strategies to enable inter-component interactions and data sharing. You dove into understanding how memory leaks can be created and the importance of managing your subscriptions.

You can now differentiate between imperative and reactive programming paradigms and understand the importance of sticking with reactive programming where possible. Finally, you learned how to implement sophisticated functionality by chaining multiple API calls together. You learned about the signal primitive and how you can use it to build simpler and more performant applications.

LocalCast Weather is a straightforward application that we used to cover the basic concepts of Angular. As you saw, Angular is great for building such small and dynamic...

Exercises

After completing the Support international zip codes feature, did we switch coding paradigms here? Is our implementation above imperative, reactive, or a combination of both? If our implementation is not entirely reactive, how would you implement this function reactively? I’ll leave this as an exercise for the reader.

Don’t forget to execute npm test, npm run e2e, and npm run test:a11y before moving on. It is left as an exercise for the reader to fix the unit and end-to-end tests.

Visit GitHub to see the unit tests I implemented for this chapter at https://github.com/duluca/local-weather-app/tree/master/projects/stage6.

Questions

Answer the following questions as best as possible to ensure you’ve understood the key concepts from this chapter without googling anything. Do you know if you got all the answers right? Visit https://angularforenterprise.com/self-assessment for more:

  1. What is the async pipe?
  2. Explain how reactive and imperative programming is different and which technique we should prefer.
  3. What is the benefit of BehaviorSubject, and what is it used for?
  4. What are memory leaks and why should they be avoided?
  5. What is the best method for managing subscriptions?
  6. How are Angular signals different than RxJS streams?
  7. What are ways you can use Angular Signals to simplify your application?
Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Dive straight into the most relevant topics that will help you build large, complex, and high-performance web applications
  • Find updated examples, projects, and an overview of the latest tools and updates – including Jest, Cypress, NgRx workspace, Apollo GraphQL, and Angular Dev Tools
  • Get to grips with reactive code and learn how to resolve potential issues before they crop up

Description

If you’re looking to upskill and build sophisticated, minimalist web applications suited for enterprise use, Angular for Enterprise Applications is your guide to the next level of engineering mastery. In its third edition, this Angular book distils hard-earned lessons into a lucid roadmap for success. Adopting a pragmatic approach founded on a robust technical base, you'll utilize both JavaScript and TypeScript fundamentals. You'll also embrace agile engineering coding principles and learn to architect optimally sized enterprise solutions employing the freshest concepts in Angular. You’ll gradually build upon this foundation through insightful recipes, sample apps, and crystal-clear explanations. You’ll master authentication and authorization and achieve optimal performance through reactive programming and lazy loading, build complex yet flexible UIs with Router-first principles, and then integrate with backend systems using REST and GraphQL APIs. You’ll cover modern tools like RxAngular, Qwik, and Signals. You’ll construct master/detail views using data tables and NgRx for state management. You’ll explore DevOps using Docker and build CI/CD pipelines necessary for high-performance teams. By the end of this book, you’ll be proficient in leveraging Angular in enterprise and design robust systems that scale effortlessly.

Who is this book for?

This book is for mid-to-senior developers looking to gain mastery by learning how to write, test, and deploy Angular in an enterprise environment. Working experience with JavaScript is a prerequisite, and a familiarity with TypeScript and RESTful APIs will help you understand the topics covered in this book more effectively

What you will learn

  • Best practices for architecting and leading enterprise projects
  • Minimalist, value-first approach to delivering web apps
  • How standalone components, services, providers, modules, lazy loading, and directives work in Angular
  • Manage your app's data reactivity using Signals or RxJS
  • State management for your Angular apps with NgRx
  • Angular ecosystem to build and deliver enterprise applications
  • Automated testing and CI/CD to deliver high quality apps
  • Authentication and authorization
  • Building role-based access control with REST and GraphQL

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Jan 31, 2024
Length: 592 pages
Edition : 3rd
Language : English
ISBN-13 : 9781805127123
Languages :
Tools :

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : Jan 31, 2024
Length: 592 pages
Edition : 3rd
Language : English
ISBN-13 : 9781805127123
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
€189.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts
€264.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 98.97
Angular for Enterprise Applications
€37.99
Angular Cookbook
€31.99
Angular Design Patterns and Best Practices
€28.99
Total 98.97 Stars icon

Table of Contents

12 Chapters
Angular’s Architecture and Concepts Chevron down icon Chevron up icon
Forms, Observables, Signals, and Subjects Chevron down icon Chevron up icon
Architecting an Enterprise App Chevron down icon Chevron up icon
Creating a Router-First Line-of-Business App Chevron down icon Chevron up icon
Designing Authentication and Authorization Chevron down icon Chevron up icon
Implementing Role-Based Navigation Chevron down icon Chevron up icon
Working with REST and GraphQL APIs Chevron down icon Chevron up icon
Recipes – Reusability, Forms, and Caching Chevron down icon Chevron up icon
Recipes – Master/Detail, Data Tables, and NgRx Chevron down icon Chevron up icon
Releasing to Production with CI/CD Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.9
(8 Ratings)
5 star 87.5%
4 star 12.5%
3 star 0%
2 star 0%
1 star 0%
Filter icon Filter
Top Reviews

Filter reviews by




Matheus Rian de Souza Silva Matheus Mar 06, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Feefo Verified review Feefo
Jocelynn Hartwig Feb 23, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book is perfect for any individual or team that is looking to learn how to write scalable, enterprise-grade Angular applications. Uluca provides code samples, design patterns, and and effective narratives around challenging concepts faced by any team leveraging Angular.Whether you’re just getting started with Angular, or are looking for a solid reference to back up industry experience, this book will be greatly helpful.
Amazon Verified review Amazon
Krinja M. Mar 17, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
"Angular for Enterprise Applications" is an incredible resource and reference for my work as a developer. The book's focus on architecture, best practices, and real-world examples has been invaluable. The content in this books has allowed me to deliver scalable and maintainable Angular applications. The detailed ”router-first" approach has changed the way I think about application structure and navigation. I appreciate the author's emphasis on clean code and minimal reliance on third-party libraries, which has helped me create more efficient and manageable codebases. The book also covers modern Angular patterns like standalone components, signals, and the control flow syntax, ensuring that I'm working smart. While the book can be dense at times and assumes prior Angular knowledge, it has allowed me to deliver more. I highly recommend this book to any Angular developer looking to take their skills to the next level.
Amazon Verified review Amazon
Stephen Ritchie Feb 16, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
After I read the 2nd edition, I asked everyone on my team buy a copy and use it as a reference guide. Our team had struggled with Angular, but this book brought answers and helped us move forward. The book is pragmatic and easy to understand; the writing style is clear and direct.I've started reading the 3rd edition. Here's what you should know:- It's a great way to become proficient in Angular.- It provides the know-how to design and implement enterprise systems.- It emphasizes effective coding principles and good architectural strategies.- It's going to help you develop scalable and maintainable applications.- It provides practical examples, recipes, applications, and clear explanations.- It's takes a step-by-step approach to learning.- It teaches a lot about authentication, authorization, and reactive programming.- It covers router-first principles, connecting with backend systems using GraphQL APIs, and utilizing modern tools.- It delves into state management and complex user interfaces.- It covers essential DevOps practices, the use of Docker, and CI/CD pipelines.- It highlights operational aspects: deploying/maintaining Angular applications.What I said about the last edition holds true for this edition: "What I like most about this book is that it's very comprehensive and well written. There are a lot of examples and sample code files. In addition, I'm learning about key Angular patterns, tools, and technologies. There's so much content that I'm sure it will be a great reference for a long time."
Amazon Verified review Amazon
shubham kamble Jul 20, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book is perfect for any individual or team that is looking to learn how to write scalable, enterprise-grade Angular applications. Uluca provides code samples, design patterns, and and effective narratives around challenging concepts faced by any team leveraging Angular. This book will help you clear all your doubts regarding Angular topics from basic to advanced.Whether you’re just getting started with Angular, or are looking for a solid reference to back up industry experience, this book will be greatly helpful.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.