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
Tag: Angular 7
Angular and Spring Boot Excel Export / Download
Hi Folks, After a long I got some time to write new article. This article shows how to download or export data to excel file from Angular. The project stack is Angular 7 (PrimeNG) and Spring Boot. Let's start with UI first - In .html file declared a button to download the excel file <div … Continue reading Angular and Spring Boot Excel Export / Download
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