Application Architecture with React: Rethinking Flux
dialelo.github.io
Application Architecture with React: Rethinking Flux
1–10 of 53 posts
Re: Application Architecture with React: Rethinking Flux
#2Re: Application Architecture with React: Rethinking Flux
#3Re: Application Architecture with React: Rethinking Flux
#4With each next article about React (and more generally javascript) it's more apparent that the final result is a mongo/rethink like db in the front-end with a transparent sync to the server
Re: Application Architecture with React: Rethinking Flux
#5FWIW Om Next moves away from cursors and towards something closer to GraphQL/Relay queries.
Re: Application Architecture with React: Rethinking Flux
#6Re: Application Architecture with React: Rethinking Flux
#7Compare all that to Meteor.
Re: Application Architecture with React: Rethinking Flux
#8Re: Application Architecture with React: Rethinking Flux
#9We have just started using Redux [2] with ImmutableJS. It's a nice way of expressing how different actions mutate the store, but I do feel like there's some leaky abstractions in there - e.g. ImmutableJS is usually used for performance reasons, yet you see your entire app filled with getter boilerplate to get the data from the immutable structures.
I have to say I don't quite see the difference between CSP used here and normal eventemitter style code. Can someone explain the difference?