<https://blog.pusher.com/lessons-learned-implement...
# feed
d
great article, did you use one of libraries like evant/redux ReKotlin or redux-java ?
z
@nish is the author ^^
n
@dariuszbacinski I recommended evant/redux and ReKotlin at the bottom. They are great starting points
y
Nice article but if you really want to understand how to use redux, you should really go back to the original implementation and its extensions.
In particular one often forgotten extension for redux is redux-saga middleware: it has ~11k stars on github (reduxjs repository has ~35k)
If you are interested, I have almost completed an initial port of redux-saga for kotlin+android, as part branch 3.x of https://github.com/beyondeye/Reduks. I will probably release it next week
👍 1
r
Hi, I also play with redux some moment ago. Redux has good architecture to play with UI Complex changes. https://github.com/radityagumay/aredux
d
and if you are more like Rx kind of guy, then there is RxJS Middleware available for React and ReactNative https://github.com/redux-observable/redux-observable
👍 1
Copy code
Nice article but if you really want to understand how to use redux, you should really go back to the original implementation and its extensions.
definitely it is worth to try Redux with React or React Native, for me it was mind-blowing how different this architecture is from MVP/MVVM counterparts, but at the same time very powerful and pleasant to use
n
Rolling out my own implementation definitely helped me understand how things were supposed to work together. If your goal is learning, I recommend doing this for any architecture you are working with, not just Redux.
👍 2