Angular Module
In Angular, Modules are
the collection of the Components, Service directives, and Pipes which are
related such that they can be combined to form a module.
A module is a collection of services, directives, controllers, filters,
and configuration information. angular.module is used to configure the
What's an NgModule
NgModules
are simply TypeScript classes decorated with the
@NgModule
decorator imported from
the @angular/core
package.
Modules
provide a way for developers to organize their code and they are particularly
helpful for managing large apps.
In Angular, Modules are the collection of the
Components, Service directives, and Pipes which are related such that they can
be combined to form a module.
Comments
Post a Comment