Search⌘ K
AI Features

Summary: Redux Fundamentals

Explore the foundational Redux principles including the single source of truth store, actions, and reducers. Understand how these concepts enable centralized state management, efficient updates, and easier debugging in Angular applications using NgRx.

Redux principles

Redux is based on the following three principles:

  • A Redux app has a single source of truth called the store.

  • The store is read-only and can only be changed by dispatching actions.

  • Changes are made using pure functions called reducers. ...