Failed to execute ‘removeChild’ on ‘Node’.

This error is frequently noticed on some projects. Though it seems to be something to do with DOM modification, there seems to be nothing obvious from code where this could be caused. So, turns out there can be multiple reasons for this to occur: 1. Applying browser translation on non-wrapped elements.2. Conditionally rendering elements inside… Continue reading Failed to execute ‘removeChild’ on ‘Node’.

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

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