I want JavaScript state management

Submitted by Gary Valverde Hampton

I would like a way to manage state across JavaScript features (specially native web components) without depending on Redux or similar technologies (ngrx, ngxs, Akita, Mobx). On the community side, we've been developing a lot of tools and libraries that allow us to manage state and I think we’ve reached a mature-enough state to start looking for a native implementation to this pattern.

Without state management, it's pretty easy to lose track of the local state in applications with multiple components. Facebook addressed this using the Flux pattern (video).

Here’s what we need in a state management implementation:

Tagged
JavaScript