Flux and Redux: Differences

Michał Piórkowski

1 December 2022, 6 min read

thumbnail post

What's inside

  1. MVC - This is Where it All Began
  2. What is Flux?
  3. What is Redux?
  4. Differences
  5. How do Flux and Redux Handle Debugging?
  6. Final Thoughts on Flux and Redux

For years now, the front-end part of the applications is becoming increasingly important in the development process. This is why engineers are constantly thinking of a way to improve the architecture part of any front-end application.

For years they have been using an old and well-known MVC (Model - View - Controller) approach, but at some point, a decision was made (in one of the largest companies in the world, Facebook) to take a different path.

This is how Flux architecture was invented. But that was not the end of the story. In the future, an engineer named Dan Abramov felt Flux architecture could be simpler and created Redux in 2015.

Again, that is probably not the end of the story, but this time we will focus on Flux and Redux. In this article, we will handle the most important aspects of both and look at the differences - hoping this may help you choose the right approach for your application.

MVC - This is Where it All Began

We’ll not dwell on the MVC architecture a lot, but it briefly reminds us of the basic principles. First, MVC is a shortcut for Model - View - Controller - three components into which any application is divided:

  • Model - this part takes care of the application’s data.
  • View - displays the data from the model in the User Interface.
  • Controller - this is the interface between the view & model components.

The process is simple - when the controller receives the request from the user, it uses the appropriate model and views with a response it generates.

What is Flux?

Flux is an Architecture that was built around a CQRS concept. CQRS is a shortcut for Command and Query Responsibility Segregation - its main purpose is to separate parts responsible for reading information from the ones that take care of its modification.

Flux is based on the following components:

  1. Store (or Stores) serves as containers for the application state and logic (Model).
  2. Action is a component that passes data to the dispatcher.
  3. The view is similar to MVC - but it’s connected to React components in this context (View).
  4. Dispatcher - as the name may suggest - coordinates actions and stores updates (Controller).

In Flux architecture, whenever an action is initiated by the user (for example, he clicks on something), the view component creates action. Action can create some new data and send it to the dispatcher, which dispatches the result of the action to the store. Ultimately, the store updates the state based on the results and sends the update to the view component.

What is Redux?

Now let’s take a look at the Redux library. As mentioned, Redux was invented to simplify Flux. It implements Flux concepts but in a bit different way. It introduces new components, such as

  1. Reducer - logic that manages data changes in pure functions. It uses the previous state and actions to return the next state and data.
  2. Centralized store - this is simply a state object that denotes the entire application’s state.

Redux operates simply:

Action is dispatched to the reducer, which updates the centralized store with the data based on the action used. The store will create a new state and send the updated data to the view, which is being rerendered in order to show the update.

Differences

Now that we know some basics about both architectural approaches let’s look at the main differences.

Use Cases

Let’s begin with the most obvious part - the suggested use cases for each architecture.

Flux and Redux are similar in one aspect - they both support client-side frameworks and are both front-end architectural approaches. They work very well with frontend frameworks - the main difference being that Redux not only supports React, Vue, Angular, and Polymer but is also very good for Ember, Backbone, and Meteor.

Data Flow Direction

Flux and Redux represent the same approach regarding data flow - in opposition to MVC. They encourage unidirectional flow. This gives you much better control over the data.

Stores

This is an actual difference between Flux and Redux. Redux uses a single store, and Flux uses a multiple stores approach.

This means that Redux keeps state information in one place of the application, whereas Flux uses multiple stores per application.

You probably wonder what the main difference between a single and multi-store approach is. Data handling is the simplest and most straightforward answer.

When an action is using multiple stores. Managing updates and tracking what the state includes is also a bit harder.There is a single store in Redux, and all the changes are made through Reducers functions.

Business Logic Placement

Business logic is the most important part of any application. This part allows the business rules to be the actual application.

In Flux, the business logic (changes in the data based on the actions) is handled in the appropriate store. A store is also a place that controls the data access by the public.

On the other hand, Redux handles the logic in the reducer function - a function that receives both the previous state and action - giving a new state in return.

How do Flux and Redux Handle Debugging?

Flux uses a dispatcher to handle all the actions, and this part of the architecture also allows pretty simple debugging.

As you may remember, Redux does not have this part, so the debugging is handled slightly differently but also pretty easy (some may say, much easier than in Flux).

A single Store maintains the state of the entire app. This makes the debugging process easier. What Redux also offers is logging all the actions leading up to a certain point and a live code-editing option with a debugging feature that enables replaying debugging action.

The way Redux operates is similar to event sourcing principles - making it even more exciting, as event sourcing is a growing approach that is becoming increasingly.

Final Thoughts on Flux and Redux

In the dynamic world of front-end development, the Flux and Redux architectures stand out as pillars for state management. A quick look at their nuances reveals key considerations for your project:

  • Framework Flexibility: Both Flux and Redux adapt seamlessly to client-side frameworks. Redux, with broader compatibility, extends its reach to React, Vue, Angular, Polymer, Ember, Backbone, and Meteor.

  • Data Flow Precision: Embracing unidirectional flow, Flux and Redux redefine data control, ensuring a streamlined and predictable development process.

  • Store Strategy: Redux opts for simplicity with a centralized store managed through reducer functions. Flux, in contrast, navigates multiple stores, demanding meticulous action handling.

  • Business Logic Handling: Flux delegates business logic to the store, while Redux places it in the spotlight through the reducer function transforming state based on actions.

  • Debugging Insights: Flux's dispatcher simplifies debugging, while Redux leverages a centralized store, offering unique features like action logging and live code editing.

In choosing between Flux and Redux, align your architectural preferences with project goals. Ready to embark on this journey? Contact us.

Share

Recent posts

See all blog posts

Are you ready for your next project?

Whether you need a full product, consulting, tech investment or an extended team, our experts will help you find the best solutions.

Hi there, we use cookies to provide you with an amazing experience on our site. If you continue without changing the settings, we’ll assume that you’re happy to receive all cookies on Sunscrapers website. You can change your cookie settings at any time.