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
Tag: #angularjs
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
Lazy Loading in Angular 8
We all know lazy loading is one of the most useful concepts of Angular Routing, and for those of us who have been working with Angular, we know how it brings down the size of large files. This is done by lazily loading the files that are required occasionally. To start with lazy loading by… Continue reading Lazy Loading in Angular 8
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
CRUD with Angular
In almost any application that we work with, the first important thing to do is to deal with data, loads and loads of data. And this data which resides on the server is dealt with by the use of HTTP operations. We perform HTTP GET and POST operations to work with that data. Now, in… Continue reading CRUD with Angular
Video: Talk at ngIndia
I delivered a talk in Indiaās Angular conference: ngIndia on the topic āHostBinding() and HostListener()ā. Find the link to the video here: https://youtu.be/nRrbYGXE8xQ Also, to understand the topic better, refer to the pre-requisites article here:
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!