This might be a noob question! Since Redux is pretty agnostic about where it is supposed to be used, and just a state management library; I was wondering, are there any use cases for it to be used on the back-end / server side?
I googled and became understood about the quality. These all instructions are done for the development this platform.They help me write my essay about the redux and it's classification.
Ghazouane
code ♥ surf
Of course you can. Try Redux + websocket : its awesome !
Client side : UI Action -> dispatchAction -> update the Store -> UI rerender Server side : WS request -> dispatchAction -> update the Store -> WS response
And when you have both : UI Action === WS Request -> dispatchAction (ServerSide) -> update the Store (Server Side) -> WS response -> update the Store (client side) -> UI rerender
For that, you can use middleware to dispatch automatically wsrequest on ui-action and save the new store automatically on wsresponse. Easy !
With this you can have a easy synchronized client/server store tought the time.
The only one problem, is how to scale with websocket ?
Cheers !