What is a store in redux?

Technology CommunityCategory: ReactWhat is a store in redux?
VietMX Staff asked 3 years ago

The store is a JavaScript object that holds application state. Along with this it also has the following responsibilities:

  • Allows access to state via getState();
  • Allows state to be updated via dispatch(action);
  • Registers listeners via subscribe(listener);
  • Handles unregistering of listeners via the function returned by subscribe(listener).