InterviewSolution
Saved Bookmarks
| 1. |
What is a bootstrapping module? |
|
Answer» Every application contains at least one Angular module, which is referred to as the bootstrapping module. AppModule is the most popular name for it. Example: The following is the default structure of an AngularCLI-generated AppModule: import { BrowserModule } from '@angular/platform-browser';import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { HttpClientModule } from '@angular/common/http'; import { AppComponent } from './app.component'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, FormsModule, HttpClientModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { } |
|