I am trying to learn the Flux pattern.
I learned how to use React with .net MVC and displayed it on the server side.
I would like to learn Flux, but all tutorials use node js.
I do not use node.
I do not know how to implement the Event Emitter part, because it uses the node function.
https://www.codementor.io/reactjs/tutorial/react-js-flux-architecture-tutorial
About 1/3 of the way down:
"Event Emitter - the event emitter is responsible for notifying subscribers after the store has performed some action with data. And vice versa, it should also be able to register observers for certain events. Node s event emitter will be used in the todo application."
Given that Flux is just a template, is there something I can use with .net MVC, in the absence of node, to handle the Event Emitter part?
Thoughts appreciated, thanks.
source share