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
Free Learning
Arrow right icon
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
$9.99 $39.99
Paperback
$49.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

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...

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 : 9781805125037
Languages :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

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

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.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
$199.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
$279.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 $ 129.97
Angular Design Patterns and Best Practices
$37.99
Angular Cookbook
$41.99
Angular for Enterprise Applications
$49.99
Total $ 129.97 Stars icon
Banner background image

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
(7 Ratings)
5 star 85.7%
4 star 14.3%
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

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.