fluxify
fluxify copied to clipboard
The simplest Flux implementation.
In this fluxify, you use the updater in action callbacks to mutate the store values. E.g. ``` javascript actionCallbacks: { changeName: function( updater, name ){ // Stores updates are only...
Anyway I can add common functions to a store so that I can use them inside the actionCallbacks?
I propose that `flux.doAction(undefined)` should throw an error. This gives the developer a faster debugging feedback cycle by getting an error immediately whenever an invalid value is passed as an...
I'd like to see a diff of what changed between 0.2.2 and 0.2.1, but there's no git tag for 0.2.2
I was just looking through a few Flux implementations and stumbled upon fluxify. One major problem I have with Flux is the difficulty of building isomorphic apps. With React (no...