January 2018
Intermediate to advanced
332 pages
7h 36m
English
First, let's create an Angular application like we did in the preceding use case:
ng new heatmap
This should create the app and it should be ready to go. Just go into your project folder and run the following command to see your app running:
ng serve
Once the application is up, we will include Angular material just so we can quickly have a nice form up and running. To install material in your Angular application, run the following command:
npm install --save @angular/material @angular/animations @angular/cdk
Once material is installed, include the module of your choice in your main app.module.js, which, in this case, is going to be MatInputModule and ReactiveFormsModule because we will need them to create ...
Read now
Unlock full access