Open dalgard opened 8 years ago
Not sure if you are aware of it but redux-elm
does not depend onredux-side-effects
anymore.
This is just another alternative approach for side effect management in redux apps. I'd say it's orthogonal to redux-saga
.
I wasn't aware that redux-side-effects
used to be a dependency, but that explains it, I think.
Can you elaborate on what you mean by orthogonal in this context?
Well not entirely orthogonal
since both are "kinda" trying to deal with side effects. However, saga is more about long lived transactions unlike redux-side-effects
which deals only with side effects.
The docs for
redux-elm
states:I am wondering why
redux-side-effects
exists, if the same authors recommendredux-saga
. Shouldn't there at least be some mention ofredux-saga
in the README for this project?