Redux Redux is an open-source JavaScript library for front-end development. It’s an application data flow architecture. It is used with React to solve the ‘state transfer problem.’ It maintains a single immutable store tree to keep the state of the whole application which can’t be changed directly. When something changes, it creates a new object of the state (using actions and reducers). Redux has become popular because of its simplicity and small size(2 KB).
Topics