About 3,770,000 results
Open links in new tab
  1. 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 But now …

  2. 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 capabilities …

  3. Angular 19 with NgRx: NullInjectorError: No provider for ...

    Apr 8, 2025 · I am building a login app using Angular 19 with NgRx for state management. I want to store the authentication state using NgRx. My app is set up with standalone components and uses …

  4. 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 …

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

    export const getFirstRecord = createSelector( getRecordByIndex(/* somehow pass index = 0 to this selector */), (firstRecord) => firstRecord), ); But I didn't find any mention how to pass parameters to …

  6. 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, 7 months ago Modified 1 year, 10 months ago Viewed 4k times

  7. What is the reason to use NgRx in Angular when data is always synced ...

    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 should …

  8. 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 memoization which …

  9. 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 it possible to define the …

  10. angular - How to create selector with parameters like in NGRX ...

    May 15, 2024 · How to create selector with parameters like in NGRX signalStore like `createSelector` in NGXS? Asked 1 year, 7 months ago Modified 1 year, 6 months ago Viewed 2k times