DI deets

The title seems vague? I hope you guessed already what it is going to be about. In this blog post, I will be sharing about dependency injection in general and move to further discuss the DI details in Angular framework. I will try to dive deeper into the topic and demystify some of the less known concepts… Continue reading DI deets

Recognized as a Google Developer Expert

I am very excited to be sharing that I have been recognized as a Google Developer Expert in Angular. I am very thankful to everyone who was so supportive in the process. What is GDE? GDE is a program to recognize individuals who are experts in some technology and use their knowledge to contribute to the… Continue reading Recognized as a Google Developer Expert

forkJoin, combineLatest, withLatestFrom

In this blog post about understanding the usage of these three combination operators and handling errors with these, I will cover: What are combination operators in RxJS use cases for three of these handling errors when using combination operators Introduction to why combination operators When working with data streams, we might want to combine multiple… Continue reading forkJoin, combineLatest, withLatestFrom

Step-by-step guide to creating your first library in Angular

I was working on a library project and I realised having never really documented anywhere about the step by step creation of an angular library, both for my later reference and for you all. So, here I go! Before I start this blog post, I want to convey about an angular library codelab that I… Continue reading Step-by-step guide to creating your first library in Angular

Code Lab — Web Components using Angular Elements

Link to Code Lab: https://ng-codelab-webcomponents.netlify.com In this small blog post, I’ll walk through the code lab I created for learning how to create web components using Angular Elements, understanding the different web component specifications, and then being able to use them in some other frameworks. In the month of February, I will be speaking at… Continue reading Code Lab — Web Components using Angular Elements

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

Creating framework-agnostic web components with Angular

Wait, framework-agnostic web components? What is that! Let us try to understand the meaning of this term by an example, apparently my own example. TL;DR This article shares about the need for web components, web component specifications, what are Angular elements, how can we create web components using Angular elements, and finally how we can we… Continue reading Creating framework-agnostic web components with Angular

Using a bootstrap modal as a dynamic component

Working in an application involving multiple components under different modules, there are scenarios where in you’d not want to fix another template for a simple functionality like a modal component, let’s say! For such components, we can actually build a dynamic component where in we would not need to render the template at the build… Continue reading Using a bootstrap modal as a dynamic component