FormidableLabs / freactal

Clean and robust state management for React and React-like libs.
MIT License
1.65k stars 47 forks source link

An alternative: looking glass engine #114

Open edelhart-voicebase opened 4 years ago

edelhart-voicebase commented 4 years ago

Freactal is quite good - as far as it goes.

I have written an alternate take on the same solution set based on RxJS : Looking Glass Engine

LGE is not wed to React; rather it is an event emitter that has actions and emits updates as changes occur. Also, it has one-stroke creation of properties (name and start value) and observable error trapping.

LGE is the result of months of experiment and use for fairly deep apps. It can be bound to components or create global stores that can be bound to from any component.

Check it out at https://lge-2-docs.bingomanatee.now.sh/

My thanks to the Freactal team for what was the model and inspiration of my work.