Angular Compilation, Deployments and Performance analysis

Hi Folks, This article put some focus on Angular compilation and deployment in production. We will also look into angular.json file. Angular offers 2 ways to compile application Just-in-time (JIT) : complies app in browser at runtime andAhead-of-time (AOT): compiles app at build time JIT compilation is default compilation when ng build or ng serve … Continue reading Angular Compilation, Deployments and Performance analysis

Angular 7 – Project Setup with Material Design

Hi Folks, Let's have a quick look at how to setup a Angular 7 project structure with Google Material design. Go to the command prompt or Powershell execute the below command to install angular 7 npm install -g '@angular/cli' 2.  after this install following packages npm install --save @angular/material @angular/cdk @angular/animations 3. Create a new … Continue reading Angular 7 – Project Setup with Material Design