Introducing resource Angular 19 brings an exciting addition to its toolkit: the Resource API. This API is designed to simplify asynchronous data fetching and state management, making it more declarative and easier to integrate into Angular’s reactive ecosystem. In this blog, we’ll
Read More
Exploring Angular’s linkedSignal: Enhancing Signal Reusability In Angular applications, managing state and reactivity often involves tools like BehaviorSubject from RxJS. With the advent of signals, particularly linkedSignal, Angular provides a declarative and more Angular-native approach to handling dynamic state transformations. Let’s build
Read More
Streamlining Application Development: Nx Monorepo’s Transformative Impact for Angular Developers. In the fast-paced world of enterprise software development, I discovered Nx Monorepo as an Angular developer when I worked on a team converting AngularJs project to Angular, the latest version 14. That
Read More
This is my attempt to help a new developer understand how nested arrays opperate. A nested array can be thought of like a set of nested dolls, where each doll is contained within another doll. This array can be thought of as
Read More
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
Once, in 2022, I had the opportunity to speak at a major Angular conference, ng-conf. I was nervous but excited, as this was a huge opportunity to share my knowledge and expertise with the Angular community.As the day of the conference approached,
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