diff --git a/aio/content/guide/bootstrapping.md b/aio/content/guide/bootstrapping.md index 134281e245..8eba316bff 100644 --- a/aio/content/guide/bootstrapping.md +++ b/aio/content/guide/bootstrapping.md @@ -1,66 +1,84 @@ # Bootstrapping -An NgModule class describes how the application parts fit together. -Every application has at least one NgModule, the _root_ module +An Angular Module (NgModule) class describes how the application parts fit together. +Every application has at least one Angular Module, the _root_ module that you [bootstrap](#main) to launch the application. -You can call it anything you want. The conventional name is `AppModule`. +You can call the class anything you want. The conventional name is `AppModule`. -The [setup](guide/setup) instructions produce a new project with the following minimal `AppModule`. -You'll evolve this module as your application grows. +The [**Angular CLI**](https://cli.angular.io/) produces a new project with the following minimal `AppModule`. +You evolve this module as your application grows. - - + - After the `import` statements, you come to a class adorned with the **`@NgModule`** [_decorator_](guide/glossary#decorator '"Decorator" explained'). The `@NgModule` decorator identifies `AppModule` as an `NgModule` class. `@NgModule` takes a _metadata_ object that tells Angular how to compile and launch the application. -* **_imports_** — the `BrowserModule` that this and every application needs to run in a browser. -* **_declarations_** — the application's lone component, which is also ... -* **_bootstrap_** — the _root_ component that Angular creates and inserts into the `index.html` host web page. +The `@NgModule` properties for the minimal `AppModule` generated by the CLI are as follows: -The [NgModules](guide/ngmodule) guide dives deeply into the details of NgModules. -All you need to know at the moment is a few basics about these three properties. +* **[_declarations_](#declarations)** — declares the application components. At the moment, there is only the `AppComponent`. +* **[_imports_](#imports)** — the `BrowserModule`, which this and every application must import in order to run the app in a browser. + + +* **[_providers_](#providers)** — there are none to start but you are likely to add some soon. + + +* **[_bootstrap_](#bootstrap-array)** — the _root_ `AppComponent` that Angular creates and inserts into the `index.html` host web page. + +The [Angular Modules (NgModules)](guide/ngmodule) guide dives deeply into the details of `@NgModule`. +All you need to know at the moment is a few basics about these four properties. + +{@a declarations} + + +### The _declarations_ array + +You tell Angular which components belong to the `AppModule` by listing it in the module's `declarations` array. +As you create more components, you'll add them to `declarations`. + +You must declare _every_ component in an Angular Module class. +If you use a component without declaring it, you'll see a clear error message in the browser console. + +You'll learn to create two other kinds of classes — +[directives](guide/attribute-directives) and [pipes](guide/pipes) — +that you must also add to the `declarations` array. + +
+ +**Only _declarables_** — _components_, _directives_ and _pipes_ — belong in the `declarations` array. +Do not put any other kind of class in `declarations`. Do _not_ declare `NgModule` classes. Do _not_ declare service classes. Do _not_ declare model classes. + +
+ {@a imports} - ### The _imports_ array -NgModules are a way to consolidate features that belong together into discrete units. -Many features of Angular itself are organized as NgModules. -HTTP services are in the `HttpModule`. The router is in the `RouterModule`. -Eventually you may create a feature module. +Angular Modules are a way to consolidate features that belong together into discrete units. +Many features of Angular itself are organized as Angular Modules. +HTTP services are in the `HttpClientModule`. The router is in the `RouterModule`. +Eventually you may create your own modules. Add a module to the `imports` array when the application requires its features. _This_ application, like most applications, executes in a browser. Every application that executes in a browser needs the `BrowserModule` from `@angular/platform-browser`. So every such application includes the `BrowserModule` in its _root_ `AppModule`'s `imports` array. -Other guide and cookbook pages will tell you when you need to add additional modules to this array. - +Other guide pages will tell you when you need to add additional modules to this array.
- - -**Only `NgModule` classes** go in the `imports` array. Do not put any other kind of class in `imports`. - - +**Only `@NgModule` classes** go in the `imports` array. Do not put any other kind of class in `imports`.
- -
- - The `import` statements at the top of the file and the NgModule's `imports` array are unrelated and have completely different jobs. @@ -70,44 +88,30 @@ You add `import` statements to almost every application file. They have nothing to do with Angular and Angular knows nothing about them. The _module's_ `imports` array appears _exclusively_ in the `@NgModule` metadata object. -It tells Angular about specific _other_ NgModules—all of them classes decorated +It tells Angular about specific _other_ Angular Modules—all of them classes decorated with `@NgModule`—that the application needs to function properly.
+{@a providers} +### The _providers_ array -{@a declarations} +Angular apps rely on [_dependency injection (DI)_](guide/dependency-injection) +to deliver services to various parts of the application. +Before DI can inject a service, it must create that service with the help of a _provider_. +You can tell DI about a service's _provider_ in a number of ways. +Among the most popular ways is to register the service in the root `ngModule.providers` array, which will make that service available _everywhere_. -### The _declarations_ array - -You tell Angular which components belong to the `AppModule` by listing it in the module's `declarations` array. -As you create more components, you'll add them to `declarations`. - -You must declare _every_ component in an `NgModule` class. -If you use a component without declaring it, you'll see a clear error message in the browser console. - -You'll learn to create two other kinds of classes — -[directives](guide/attribute-directives) and [pipes](guide/pipes) — -that you must also add to the `declarations` array. - - -
- - - -**Only _declarables_** — _components_, _directives_ and _pipes_ — belong in the `declarations` array. -Do not put any other kind of class in `declarations`; _not_ `NgModule` classes, _not_ service classes, _not_ model classes. - - -
- +For example, a data service provided in the `AppModule`s _providers_ can be injected into any +component anywhere in the application. +You don't have any services to provide yet. +But you will create some before long and you may chose to provide many of them here. {@a bootstrap-array} - ### The _bootstrap_ array You launch the application by [_bootstrapping_](#main) the root `AppModule`. @@ -124,58 +128,42 @@ You can call the one _root_ component anything you want but most developers call Which brings us to the _bootstrapping_ process itself. - {@a main} ## Bootstrap in _main.ts_ -There are many ways to bootstrap an application. -The variations depend upon how you want to compile the application and where you want to run it. - -In the beginning, you will compile the application dynamically with the _Just-in-Time (JIT)_ compiler -and you'll run it in a browser. You can learn about other options later. - -The recommended place to bootstrap a JIT-compiled browser application is in a separate file -in the `src` folder named `src/main.ts` - - +While there are many ways to bootstrap an application, most applications do so in the `src/main.ts` that is generated by the Angular CLI. + - - -This code creates a browser platform for dynamic (JIT) compilation and +This code creates a browser platform for dynamic compilation and bootstraps the `AppModule` described above. The _bootstrapping_ process sets up the execution environment, digs the _root_ `AppComponent` out of the module's `bootstrap` array, creates an instance of the component and inserts it within the element tag identified by the component's `selector`. -The `AppComponent` selector — here and in most documentation samples — is `my-app` -so Angular looks for a `` tag in the `index.html` like this one ... +The `AppComponent` selector — here and in most documentation samples — is `app-root` +so Angular looks for a `` tag in the `index.html` like this one ... - + + + <body> + <app-root></app-root> + </body> - - ... and displays the `AppComponent` there. -This file is very stable. Once you've set it up, you may never change it again. +The `main.ts` file is very stable. Once you've set it up, you may never change it again. - - - - - - - -## More about NgModules +## More about Angular Modules Your initial app has only a single module, the _root_ module. As your app grows, you'll consider subdividing it into multiple "feature" modules, some of which can be loaded later ("lazy loaded") if and when the user chooses to visit those features. -When you're ready to explore these possibilities, visit the [NgModules](guide/ngmodule) guide. +When you're ready to explore these possibilities, visit the [Angular Modules](guide/ngmodule) guide.