The Angular Router – Trivandrum TechCon20

2020 started with the first Angular event on 25th of January of the year. This event, Trivandrum TechCon20 was organised as a part of 2020 twenty series in Thiruvananthapuram, Kerala, India. The event included multiple talks about Azure, .NET, Flutter, cognitive services from some great speakers. I spoke about the Angular Router and its lifecycle… Continue reading The Angular Router – Trivandrum TechCon20

New Angular Router features in versions 7, 8, and 9

When I published my book on Angular Routing, Angular 8 was not yet released. Some of the topics that I covered in my book are Router events, lazy loading etc. When I was implementing lazy loading as a demo for one of the chapters in the book, I was scratching my head. Now this was because I… Continue reading New Angular Router features in versions 7, 8, and 9

A book on Angular Routing?

When I started my journey of learning Angular, the concept that captured my interest totally was the routing and navigation techniques in the framework. First of all, my basic understanding of web apps was that there are multiple pages and clicking on one element on a page would link to the next page having a… Continue reading A book on Angular Routing?

Angular Library with ng-packagr

NOTE: The article is relevant to the earlier versions of Angular and with the version 7 and above, we can create a library in Angular using the command ng generate library <library-name> . For more on this, refer to the documentation here: https://next.angular.io/guide/creating-libraries When you have a small application with three or more components, and they… Continue reading Angular Library with ng-packagr

CSharp Corner Conference 2019

In the month of April 2019, I got the opportunity to speak at the annual conference of CSharp Corner. CSharp Corner is the worldwide community of software professionals and developers located in the USA. The conference included talks on diverse technologies such as .NET, BlockChain, Docker, Angular et cet era. With Angular being one of the… Continue reading CSharp Corner Conference 2019

Online/Offline? Check in a minute!

Here is a small and easy Angular application to check if you are connected to Internet or not! Here is a small and easy Angular application to check if you are connected to Internet or not! First thing you need to do is install a package called ng-connection-service in your angular application. Lets see how… Continue reading Online/Offline? Check in a minute!

First Routing application? Check these essential routing configs!

Hello there! Planning to start your first ever Angular application based on routing? Here are some of the most important configurations that you need to make in your project before starting with routing. Starting off with the list of files required to work with when creating routes inside an Angular application, index.html is the first file… Continue reading First Routing application? Check these essential routing configs!