I just finished implementing data polling using ngrx effects. For those unfamiliar with ngrx, it is a popular library for implementing the Redux pattern in Angular applications. To implement data polling with ngrx effects, you can create an effect that listens for
Read More
Sharing data in the Angular application When it comes to sharing data between components in an Angular application we have to remember that there more than one right way to do it! Let’s go over some assumptions, rules, and considerations for this
Read More
Angular NGRX enabling DevTools at runtime In this article, I will cover a problem that I was working on in one of my projects. With help from the NGRX team, I was able to solve it. Shot-out to @brandontroberts , @tim_deschryver, @AlexOkrushko!
Read More
Angular: front-end from start to MVP by Kate Sky I am making this post as the first step in documenting my journey of building an Enterprise application for my side project. The application is in the process of going towards an MVP. This
Read More
Angular: NGRX clean architecture with multiple stores by Kate Sky Before we go into Part 2 (testing of the multi-feature/store), I want to demonstrate the implementation of lazy loading of modules with multiple stores. So the objective of this article will be
Read More
Angular: NGRX clean architecture with multiple stores by Kate Sky The objective of this article is to provide a technical implementation of the NGRX for an application with a complexity that could benefit from adding feature store(s) in addition to the root
Read More
Using custom selectors for one-to-one or one-to-many data relationships. by Kate Sky When implementing state management with Ngrx we often have a predefined API that can not be changed. I ran across a business case: back end API is written in a
Read More