top | item 11791789

(no title)

primigenus | 9 years ago

This looks similar to how Meteor's ReactiveVar package, and lower-level Tracker library, works: https://docs.meteor.com/api/reactive-var.html

It's certainly helped make building real-time user interfaces that update when the data changes significantly easier in my opinion, because you're able to express your intent in code more closely to what you mean rather than having to write all the connecting reactive boilerplate yourself.

discuss

order

steenreem|9 years ago

Yes Meteor's reactive system seems to be almost identical. Thanks for sharing.