- Overview
- Transcript
2.2 The Application Module
Angular applications are usually built using an NgModule
as a container. In this lesson we see what that is and why it is necessary.
1.Introduction6 lessons, 42:00
1.1Introduction00:48
1.2Get Started With Angular-CLI11:09
1.3Developing With Angular-CLI13:17
1.4TypeScript vs. JavaScript06:54
1.5Angular Modules From the CLI04:31
1.6CLI Options05:21
2.Get Started With Angular7 lessons, 42:38
2.1Bootstrapping the Application04:30
2.2The Application Module04:15
2.3The Application Component08:06
2.4Component Styling03:06
2.5Global Styling05:11
2.6Creating a Component With the CLI09:34
2.7Creating a Service With the CLI07:56
3.Core Concepts7 lessons, 55:20
3.1Component Trees06:20
3.2Dependency Injection06:52
3.3Content Projection05:38
3.4Component and Directive Lifecycle Methods06:31
3.5Component-Only Lifecycle Methods05:28
3.6Decorators07:36
3.7Models16:55
4.Template Deep Dive11 lessons, 1:10:56
4.1Basic Data Binding With Interpolation05:35
4.2Property Bindings07:07
4.3Attribute Bindings03:29
4.4Event Bindings08:16
4.5Class and Style Bindings05:44
4.6The `NgClass` and `NgStyle` Directives05:04
4.7The `*ngIf` Directive04:41
4.8The `*ngFor` Directive09:29
4.9Inputs05:33
4.10Using Pipes in a Template07:31
4.11Using Pipes in a Class08:27
5.Forms10 lessons, 1:45:41
5.1Handling User Input With Template Reference Variables07:06
5.2Template-Driven Forms11:10
5.3Template-Driven Forms: Validation and Submission14:00
5.4Reactive Forms11:26
5.5Using a `FormBuilder`08:01
5.6Reactive Validation With Built-in Validators14:53
5.7Creating Custom Validators for Template-Driven Forms12:18
5.8Creating Custom Validators for Reactive Forms08:26
5.9Observing Form State Changes12:40
5.10Working With the `@HostListener` Decorator05:41
6.Routing9 lessons, 1:15:10
6.1Defining and Configuring Routes07:53
6.2Rendering Components With Router Outlets10:14
6.3Using Router Links for Navigation05:25
6.4Navigating Routes Using the Router06:24
6.5Determining the Active Route Using an Activated Route07:16
6.6Working With Route Parameters10:42
6.7Using Route Guards07:36
6.8Observing Router Events10:55
6.9Adding Child Routes08:45
7.Using the HTTP Client5 lessons, 56:24
7.1Sending an HTTP Request10:52
7.2Handling an HTTP Response11:22
7.3Setting Request Headers12:33
7.4Intercepting Requests09:04
7.5Finishing the Example Application12:33
8.Testing10 lessons, 1:23:27
8.1Service Unit Test Preparation10:45
8.2Unit Testing Services13:24
8.3Component Unit Test Preparation12:35
8.4Unit Testing Components07:27
8.5Unit Testing Component Templates06:58
8.6Unit Testing Pipes04:41
8.7Unit Testing Directives04:56
8.8Unit Testing Validators04:48
8.9Unit Testing Observables11:37
8.10Unit Testing HTTP Interceptors06:16
9.Building for Production1 lesson, 03:40
9.1Building for Production03:40
10.Conclusion1 lesson, 01:32
10.1Conclusion01:32
2.2 The Application Module
Hello folks, in this lesson we're going to take a look at the AppModule. This is the root module of the application, which is the module that gets bootstrapped in order to start the app running. So let's open up the app.module.ts file that the CLI created for us and take a look inside. So this file follows a familiar format with some imports at the top of the file, starting again with some at angular imports. It's a best practice to include these at the start of the file and to separate them from our own internal imports, hence the line breaks between the import statements, although two-line breaks is a bit excessive. We can fix this later. We'll end up importing a bunch more things into this file later on anyway. So we import the BrowserModule from Angular because we're going to be running in a browser and we import something called NgModule. This is actually a decorator, which is a bit like a function. We'll use this to tell Angular that we want to create a module and we pass an object to the decorator to tell it all about the module. This object contains several different arrays, and each one is used to load a different type of thing within Angular. Angular apps are heavily componentized. They are basically a bunch of components composed together in different ways to provide the UI of the application. In the example application, we have the app component. This doesn't need to change. You'll still have a root application component that holds the shell of the application, which is always visible. This is specified using the declarations array in the meta objects passed to the NgModule decorator. The imports array is used to specify other modules that we want to include in our application. This could be built in modules that come from Angular, third-party modules that we've downloaded via npm, or other custom modules that we might have created ourselves. In this case, we just want to use the BrowserModule that we imported at the top of the file. The provider's array is used to include services in our application. Services in Angular 2+ are just like services in Angular 1.x or AngularJS, as it's now known. Services can be injected into components to provide business logic, store states, or to share common functionality like ajax requests between different components. This is empty at the moment but we'll add some services later in the course. Lastly in the configuration object, we specify the root component using the bootstrap array. At the end of the file we export the app module as a class. Again, this is no different from regular JavaScript. Like the entry point main.js, this is a very simple and at the moment very small file which is responsible for defining the shell of the application. This file will change as we build our own application and we add more components and services, but it won't grow in complexity, only in size. So it will still be very easy to manage right at the end of the project. This file defines the root module of the application. In a small application this might be the only module that we need, but in larger applications we are free to create feature modules to help organize related parts of the application into reusable self-contained chunks. So this file defines an Angular module but you should understand that this is different from a regular JavaScript module. The file itself, app.module.js is a JavaScript or ES module because it uses the import and export tokens, but the NgModule decorator specifies an Angular module. So this file is both an ES module and an Angular module. But you should just be aware that there is a difference between the two things. So in this lesson we saw that we use the NgModule decorator to define a module for an application. And in this case, it was the roots module of the application. Don't forget that the CLI creates and configures this for us. This file brings together all of the different parts of the application and makes sure that Angular knows about them. We saw that we can load components, modules and services using the meta object passed to the NgModule decorator, thanks for watching