R. Kohlisch
R. Kohlisch

Reputation: 2993

Is Flux Architecture an alternative to MVC, or do they not exclude each other?

Is Flux Architecture an alternative to MVC, or do they not exclude each other? I am not sure I completely understand both concepts. I would like to use flux/redux in my macOS app, but it seems structurally made for MVC.

Upvotes: 1

Views: 532

Answers (1)

Easwar
Easwar

Reputation: 5412

Flux was primarily made for React, where the unidirectional data flow is useful for component based applications. MVC on the other hand is bidirectional where the controllers handle all the business logic.

This will be a good read to understand the differences between both and help you choose the right framework for your app.

Upvotes: 1

Related Questions