Optimizing the usage of common modules – the SharedModule pattern – Organizing Your Application
If we look at Angular projects, we will see patterns of use of modules such as HttpModule, as in the following example:import { NgModule } from ‘@angular/core’;import { CommonModule } from ‘@angular/common’;import { HomeComponent }…