Angular entryComponents' components

Why does Angular need entryComponents?

Why does Angular need entryComponents?
The entry components improve the performance, smallest, fastest and reusable code of your production apps.

For example, if you want to load the smallest, fastest and reusable code in your production apps. These codes contain only the classes that you actually need and it should exclude the components that are never used, whether or not those components are declared in the apps.

Stayed Informed - What Are Components in Angular 5,4 and 2?

As you know, many libraries declare and export components you will never use in your app. If you do not reference them, the tree shaker drops these libraries and components from the final code package.

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [BrowserModule],
  providers: [],
  bootstrap: [AppComponent]  // bootstrapped entry component
})
export class AppModule { }


If a component is not in an entry component, the compiler skips compiling for this component.

I hope you enjoy this post. So please give your thoughts in the below comments box. Thank you!
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

Why does Angular need entryComponents? Why does Angular need entryComponents? Reviewed by Anil Singh on 9:03 PM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^