Hacker News new | ask | show | jobs
by cnp 3294 days ago
The codebase for redux-saga is a dream to read through: https://github.com/redux-saga/redux-saga
3 comments

could you actually get anything done in js before es6 !?
Quite happily, ES6 is 90% sugar.
Was that a yes or a no? :D
Any advice on how to compare this with RxJS?
It's largely a question of whether you prefer to write your code in imperative-looking form via generator functions, or pipeline/declarative form via observables.

There's a couple particularly good comparisons of Redux side effects approaches at https://decembersoft.com/posts/what-is-the-right-way-to-do-a... and https://medium.com/react-native-training/redux-4-ways-95a130... , and more comparisons in my links list at https://github.com/markerikson/react-redux-links/blob/master... .

awesome, thanks
What do you like about it?