Skip to content

Instantly share code, notes, and snippets.

@joeybaker
Created May 5, 2015 02:55
Show Gist options
  • Save joeybaker/ab2a98f058483b8b5e31 to your computer and use it in GitHub Desktop.
Save joeybaker/ab2a98f058483b8b5e31 to your computer and use it in GitHub Desktop.

Flux research

desires

  • es6 friendly – this means no mixins
  • immutable friendly
  • no promises, because debugging them sucks

fluxible

http://fluxible.io/faq.html

  • es6 friendly
  • supported by yahoo

flummox

https://acdlite.github.io/flummox

  • super es6 friendly, and supports higher-order-components :)
  • uses promises :(
  • not much boilerplate :)
  • built-in way to pass data down from the client

Delorean.js

https://jsfiddle.net/fkadev/a2ms7rcc/

  • uses mixins :(
  • uses "lifecycle" methods, which are kinda magical :(
  • ultimately, each store emits a change callback which you can then use to re-render views that care about that store. :(

reflux

https://github.com/spoike/refluxjs/blob/master/test/index.js

  • not really es6 friendly :(
  • lots of boilerplate and lifecycle methods
  • uses events
  • need to manually hook up store events to components

fluxxor

  • not es6 friendly
  • lots of boilerplate

fynx

https://github.com/foss-haas/fynx

  • not es6 friendly
  • uses mixins
  • uses promises
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment