The main secret behind having better test coverage in an Angular app is to reduce the friction it takes to write tests and enforce test coverage by setting a test coverage threshold to be checked on … [Read more...] about The Complete Guide to NgRx Testing (2020)
Redux
Creating query param synchronization with Redux
Dealing with query params can be some muddy stuff. Done wrong it can be just as ugly as caching logic that is bloating your code base. The way to handle such cross-cutting concerns is using … [Read more...] about Creating query param synchronization with Redux
How to design Redux apps for scalability and type-safety
Previously I have written about three ways to use Redux, but how do you structure your Redux app for a scalable application? Redux is good for state management in big applications because you get … [Read more...] about How to design Redux apps for scalability and type-safety
Is Redux dead? 3 ways to use redux in your Angular app
Using Redux in React apps has become the industry standard for building scalable React apps, but with Angular, it is not so obvious when to use Redux because Angular already provides services, which … [Read more...] about Is Redux dead? 3 ways to use redux in your Angular app