Blog posts with tag rxjs

Cover Image for I refactored my Angular and Firebase Sign up App from RxJS to Promises!

I refactored my Angular and Firebase Sign up App from RxJS to Promises!

Refactoring Angular Code: From Observables to Promises

Cover Image for Angular Signals + Firebase: Bye Bye RxJS?

Angular Signals + Firebase: Bye Bye RxJS?

I built a simple contacts app recently with Angular signals and firebase and discovered that I didn’t actually need to use RxJS at all. The app does everything that a typical CRUD app should do - so this got me thinking - with signals do we even need RxJS anymore?

Cover Image for How to add loading spinner in Angular with RxJS

How to add loading spinner in Angular with RxJS

In this article, we'll learn how to add a simple loading spinner in Angular using RxJS and then use an HttpInterceptor to automatically show a loader on all network calls in our Angular app.

Cover Image for How to add infinite scroll to Angular material list

How to add infinite scroll to Angular material list

If you've ever had to deal with large lists in your web app, you're probably familiar with infinite scroll. Infinite scroll is a common UI/UX solution to the problem of presenting a large list to your users as when they need it. In this article, we're going to add an infinite scroll in Angular using the Angular CDK library.

Cover Image for RxJS in Angular: Creating a Weather App

RxJS in Angular: Creating a Weather App

RxJS in Angular can seem a bit difficult at first. But once you learn to leverage its power, it makes your code cleaner and more readable!

Back to the blog