Tag: Angular

23 Sep, 2020
Testing Angular 10 Interceptors with Spectator and Jest
There are many reasons to switch from Karma and Jasmine to Jest when Testing Angular: Jest runs faster than Karma and Jasmine Jest supports snapshot testing Jest runs tests in parallels Jest does not require a browser for testing many more… However, what’s missing are examples of how to...

09 Sep, 2020
Angular Migration and the Strangler Fig
The Challenge If your organization developed an application using the framework formerly known as Angular, now retroactively rebranded as AngularJS, you probably know that all that hard work and capital you put in now is bolted firmly to a sinking ship. AngularJS will officially exit long term support in July...

15 Oct, 2019
Component Lifecycle Methods Explained
There are a number of front end frameworks, and they have a lot in common! One of those things is the concept of components, and the ability to interact with them during different stages of their lifecycle.

01 Oct, 2019
How I Make Sense of RxJS
Reactive Programming is a pattern with some complexities, but incredible power. Many explanations of it exist, but this is how it makes sense to me.

01 Aug, 2018
Build a Responsive Navbar Using Angular 5 and Bootstrap 4
A UI that is responsive to device and browser size is critical to provide usable access to your website and services. One of the most important parts of the UI is the navigation bar (navbar), which allows users to easily find and access information. The good news is that...