💁 TLDR; If you want ot use
redux-observable
but usestream-lite
instead ofRxJS
you might want to check out this library.
If you use stream-lite
instead of RxJS
and also use redux
,
you might want to handle your async actions with something like redux-observable
.
While redux-observable
allows you to write an adapter to convert Rx Observables to your preferred stream library, internally it still uses RxJS
which brings unnecessary weight into your project.
This package export the same API as redux-observable
except: 1) no the support for adapters. 2) toPayload
pipeable operator is included.