Engineering

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 »

Routing in Angular

Angular provides a Router to make it easier to define routes for the web applications and to navigate from one view to another view in the application. What is routing? When a user enters a web application or website, routing is their means of navigating throughout the application. To change from one view to another,

Routing in Angular Read More »