About 779,000 results
Open links in new tab
  1. Why should I use NgRx if I have Signal? - Stack Overflow

    Nov 9, 2023 · 6 Angular has recently introduced Signals. Given this new feature, what advantages does the NgRx component store or any other state management offer over Signals? What …

  2. Ngrx SignalStore - How to handle async "saving" or "deleting ...

    Mar 6, 2024 · Also, with the older, full Ngrx Redux-compatible store, I could publish success and failed actions that contained information about exactly which things just completed or failed, …

  3. How do I register NGRX provideEffects with Angular 17 standalone?

    Dec 8, 2023 · I'm new to Angular 17 and there's really limited docs as to how to use NGRX with new standalone modules or components. I've installed ngrx effects: npm install @ngrx/effects …

  4. How to integrate `@ngrx/router-store` in a `@ngrx/signals` …

    1 I want a page to respond to a route param, retrieve the backend data associated with that param, and manage that data in a @ngrx/signals signalStore.

  5. What is the reason to use NgRx in Angular when data is always …

    Jan 10, 2022 · 8 NgRx, which is the Angular version of Redux for React is for State Management. In React, state management can get complicated, and Redux is there to help. For Angular, this …

  6. Manage ngrx signal store reactivity in component class

    Jan 12, 2024 · After updating to Angula v17, I am rewriting a legacy component using the "classic" ngrx (observables based) with the new ngrx/signals store. I defined some …

  7. How to pass an Angular Signal value to an NgRx selector

    May 19, 2023 · How to pass an Angular Signal value to an NgRx selector Asked 2 years, 6 months ago Modified 1 year, 9 months ago Viewed 4k times

  8. angular - ngrx: how to pass parameters to selector inside ...

    ngrx: how to pass parameters to selector inside createSelector method Asked 7 years ago Modified 2 years, 10 months ago Viewed 40k times

  9. what is ngrx createSelector and createFeatureSelector?

    Jun 12, 2020 · Its used as an optimization step for store slices selection. For example, if you return some heavy computation result for some store slice, then using createSelector will do …

  10. Dynamic Types in ngrx SignalStore with Entities - Stack Overflow

    May 14, 2024 · I need to store different types of controls (Buttons, Inputs, ...) in a Statemanagement. I would like to use the ngrx SignalStore with Entity Management for that. Is …