November 2019
Beginner
804 pages
20h 1m
English
As we briefly explained in the Learning the Angular application architecture section, modules and NgModule decorators are great for reusability and encapsulation. They provide a way to decompose applications in sets of features and to encapsulate/isolate the different pieces. You can more or less compare them to packages in Java or namespaces in .NET.
Usually, within your applications, you'll be creating so-called feature modules: https://angular.io/guide/feature-modules.
Each Angular module is declared by creating a ...
Read now
Unlock full access