Software Engineering

What is New in Angular 8?

Differential Loading Angular 8 takes advantage of  Differential loading by default. It is a process by which the browser chooses between modern or legacy JavaScript based on its own capabilities.  Differential Loading Angular 8 replates Angular 7’s custom loadChildren syntax with industry-standard dynamic imports. Web Worker Support You can now generate new web workers from the CLI. […]

What is New in Angular 8? Read More »

Angular Hello World

Creating the App To create an Angular app, you first need to install NodeJs and its packet manager NPM. NPM will help you install all the other necessities on your machine. Most important tool is Angular CLI for this task. You can install Angular-CLI globally on your machine with the command `npm install -g @angular/cli`

Angular Hello World Read More »

Angular Lazy Load Modules

Angular has many features that allow us to configure applications to be as fast and high-performance as possible. One of the critical features that enable responsive, quick Angular apps is the ability to lazy load code with the Angular Router. In other words, Angular’s ability to delay code loading with the angular router. The idea

Angular Lazy Load Modules Read More »