Where can I get a list of all possible import angular2 into ngModule?

So, we have such code to download the application.

@NgModule({
  imports:      [ BrowserModule ],
  declarations: [ AppComponent ],
  bootstrap:    [ AppComponent ]
})

We import the BrowserModule . But what is a BrowserModule? The Api link does not provide much explanation. Why do we use it. And which modules can we use more than BrowserModule? I want to understand angular2 at a deeper level. That is why ask these questions.

+4
source share
1 answer

BrowserModule , -, , . .

+1

Source: https://habr.com/ru/post/1665448/


All Articles