Mo' ClaudiusProkodedmo.hashnode.dev·Sep 4, 2023State Management in Angular with NgRx: An Introduction and TutorialEver felt overwhelmed with managing the ever-growing data in your web application? You're not alone. As web apps evolve, so does the complexity of managing their state. Enter NgRx—a superhero in the Angular universe, here to rescue you from state cha...DiscussNgRx
Munir I Saidblog.muneersahel.com·Aug 8, 2023Manage Authentication State with Angular SignalIn modern web applications, authentication is a critical aspect of ensuring the security and privacy of users' data. As an Angular developer, managing the authentication state effectively becomes essential. What is Angular Signal? Angular Signal, a s...Discuss·2 likesAngular
Alfredo PerezProalfredo-perez.dev·Jul 22, 2023FeaturedTIL: nuggets from ng-conf 2023Here are some of the best shiny new things and innovations from ng-conf 2023, where Angular enthusiasts came together to share their know-how and discuss the framework's future. In this article, I cover key highlights like deferred loading, built-in ...Discuss·17 likes·98 readsTILAngular
Smruti Ranjan Ranasmrutiranjanrana.hashnode.dev·Jun 17, 2023Simplify Angular Local State Management with Component StoreHey there! Just so you know, handling states in a front-end app is super important for making sure everything works smoothly and gives users a fantastic experience. The state is all about the up-to-date data and settings of the user interface, and it...Discuss·2 likes·346 readsAngular
Shivraj Singh Deopashivrajdeopa.hashnode.dev·Jun 16, 2023Actions In NgRx (as a function).Actions are one of the main building blocks in NgRx. Actions express unique events that happen throughout your application. From user interaction with the page, external interaction through network requests, and direct interaction with device APIs, t...DiscussNgRx
Shivraj Singh Deopashivrajdeopa.hashnode.dev·Jun 12, 2023Actions in NgRx (as a class)Actions are one of the main building blocks in NgRx. Actions express unique events that happen throughout your application. From user interaction with the page, external interaction through network requests, and direct interaction with device APIs, t...Discuss·26 readsRedux
Gergely Szerovayhashnode.angularaddicts.com·May 22, 2023From NgRx ComponentStore to SignalStore: the key takeaways from my demo projectI believe that Signals in Angular will fundamentally change the way we create Angular applications. This article is the first part of a series that aims to show you the potential of this new feature, and at the same time help you prepare for this cha...DiscussAngular
Jocelyn Knightbmdevservices.blog·Apr 11, 2023Demystifying NgRx EffectsNgRx is a powerful state management library for Angular applications, based on the principles of Redux. It provides a predictable state container, making it easier to manage and track application state changes. One of the core concepts of NgRx is Eff...Discuss·95 readsAngular
Jocelyn Knightbmdevservices.blog·Apr 6, 2023The Benefits of Using a Facade Service When Using NGRXIf you've been working with NGRX for some time now, you've probably noticed that it can sometimes get a little messy, especially when dealing with complex state management. That's where facade services come into play. In this article, we'll dive into...Discuss·49 readsNgRx
Bartosz Szłapakbarcioch.pro·Apr 5, 2023Migrate legacy NGRXBefore version 15 of NGRX, some old syntax and decorators were allowed but deprecated. I'll show you how to migrate a simple, but deprecated code to NGRX@15. The following example is mostly taken from a real-world application. There will be minor cod...Discuss·50 readsTypeScript