DEV Community

Discussion on: I Just Didn't Get Redux!

Collapse
 
grodier profile image
George Rodier

I went along a similar journey. Redux finally clicked for me when I tried to implement unidirectional data flow in plain old vanilla JavaScript (no frameworks). I created a naive implementation of a store that would update subscribers when it was updated via a reducer. Lo and behold as I was doing some research on the pattern what I was really doing was implementing Redux. And that's when it clicked!