DEV Community

Discussion on: Setting up redux is difficult

Collapse
 
illuminos profile image
Ujwal

No. Its not just you. I've learnt React and Redux on my own for personal projects. And I've always had hard time remembering what I did with Redux whenever I go back to my old projects and have to relearn every time. I get the concept of uni-directional flow of data using pure functions and a store. But the code is split into so many pieces, that sometimes its hard to keep track of all of it. Also, "reducer" is such a terrible name for such an important concept. Anyway, TL;DR, I moved to Resub and I'll never look back. It is much easier to understand and retain in the head.

Collapse
 
ladvace profile image
Gianmarco

what is resub?

Collapse
 
illuminos profile image
Ujwal

Resub is Microsoft's answer to Redux. I personally use it for my projects and it is very simple to use. You can look at the examples in the github repo to get started. It does require typescript though.