NgModules
Explore how NgModules help structure Angular applications by organizing components and features. Learn to create modules using Angular CLI and separate app functionality effectively. This lesson enables you to design scalable, well-organized Angular apps by applying module concepts to a real-world example.
We'll cover the following...
We'll cover the following...
Chapter learning outcomes
So far, we’ve discussed the architecture of an Angular project. We’ve created the basic version of our demo application, the Client Contacts Manager, and added some components to this application. Everything we’ve done so far has all been developed within the single module that Angular generates for us.
In this chapter, we will start looking further into modules in ...