Redux and The Command Pattern

Abhi Aiyer
4 min readApr 7, 2016

There are two things I know for absolute certainty in the Software industry.

1. Frameworks Always Change

We’ve all been there.

The Vicious cycle:

If things always change, then as a Software Engineer your job is to constantly be learning and making the right bets in libraries or frameworks you decide to use.

2. Design Patterns are the foundation of Software Engineering

So if we know Frameworks always change, then we have to stick to the foundation of great software: Design Patterns.

Design patterns represent the best practices used by experienced software developers. Design Patterns teach you how to think. The main benefit of learning design patterns is that you can come up with solutions to your problems a lot faster and if your co-workers are aware of these patterns, everyone can speak the same language. Now I’m advocating Design Patterns, but they are not the end all be all of solutions. Its okay if you are not using every piece of a design pattern as long you have a better solution to your particular problem.

History Lesson

We can trace design patterns back to Christopher Alexander, author of Pattern Language. Alexander…

--

--