
Learning Angular
By :

Give your feedback straight to the author himself and chat to other early readers on our Discord server (find the "learning-angular-5e" channel under EARLY ACCESS SUBSCRIPTION).
https://packt.link/EarlyAccess/
We have reached a point in our journey where we can successfully develop more complex applications by nesting components within other components in a sort of component tree. However, bundling all our business logic into a single component is not the way to go. Our application might become unmaintainable very soon.
In this chapter, we’ll investigate the advantages that Angular’s dependency management mechanism can bring to the game to overcome such problems. We will learn how to use the Angular Dependency Injection (DI) mechanism to declare and consume our dependencies across the application with minimum effort and optimal results. By the end of this chapter, you will be able to create an Angular application...