ctrlplusb / react-jobs

Asynchronously resolve data for your components, with support for server side rendering.
MIT License
166 stars 34 forks source link

evaluating react-jobs and react-resolver #16

Closed devdlabs closed 7 years ago

devdlabs commented 7 years ago

Hi @ctrlplusb I'm planning to use react-jobs or react-resolver for my next project. What do you suggest for browser side development ?
I really need Observer type stuff but hesitate to use RxJS for now so what are simplest options?

ctrlplusb commented 7 years ago

Hey @devdlabs

It's hard to say. There is no blanket answer for anything. You will have to evaluate your needs a bit further and describe the problems you would like to solve. If you want to have a loading/error status shown to the user then go for react-jobs. If you want a longer standing and community backed library then go for react-resolver.

Why do you think you need observables?

devdlabs commented 7 years ago

thanks @ctrlplusb We need to handle sockjs events and update the redux state, components etc for live updates etc. I love sockjs over socketio and need simple way to fire appropriate action etc . Any thoughts? Thank you

ctrlplusb commented 7 years ago

Look at this, perhaps it may be a helpful reference?

https://github.com/michaelmitchell/redux-socket.io-connect

devdlabs commented 7 years ago

Thanks @ctrlplusb it looks interesting