Hyperapp for Redux refugees
How I learned to stop worrying and love the function
Feb 14th, 2018 · 16 min read
I love Redux. It was my gateway to functional programming, and the first such code I ever put into production. Gone were the days of using the DOM for storing your application state and precariously manipulating it with jQuery. Redux provides a tidy state management solution that lives entirely apart from your view. The view becomes a derived representation of the state that is capable of expressing actions the user performs to apply against that state. The actions don’t directly modify the st...