XYZ
XYZ

Reputation: 27397

What kind of design pattern React Redux is using?

I'm using React with Redux for most of recent web app projects but I cannot answer the question which design pattern it is? It looks like an MVC but feels different.

The context is a typical React Redux application with no additional middleware and other state management libs.

Upvotes: 1

Views: 1616

Answers (1)

blahmountain
blahmountain

Reputation: 81

I think that this article will help Thinking in Redux...- and I'm providing a link to a previous/overlapping stackoverflow question Redux/React and MVC, OOP.

TLDR; Redux focuses on functional programming concepts and some parallels can be drawn to existing frameworks but it isn't important to get caught up on the naming/abbreviations... just really the concepts.

Upvotes: 4

Related Questions