How can I integrate socket.io events, or pubnub API with redux-saga to dispatch actions when some events happen?
You'll want to look at eventChannel here yelouafi.github.io/redux-saga/docs/advanced/Chann….
Basically, you're going to create an observable-like channel that can put through your event data from websockets or whatever. It's pretty straight forward to use. Have fun!
Sibelius Seraphini
Full Stack Developer #reactnative #redux #relay #graphql #webpack #koa #react
https://github.com/kuy/redux-saga-chat-example provides a great example of integration using eventChannel, like @michaelgilley said in the previous answer