If you are in independent contractor with availability, I will be
attending this evening specifically to find help for a project I am
involved with.
David
> --
> NodeAZ - node.js Users Group of Arizona
> http://groups.google.com/group/nodeaz/
> Twitter: @nodeaz
I think the key architectural novelty is the idea of *only* updating the canonical model (the one on the server, usually a database). Compose db commands on the client, those change the server model, clients are informed that the model has changed, templates (etc) are updated. This is new.Other application frameworks work on the idea of keeping a local representation of data, updating that, then saving it (via XHR usually, a POST). It is up to you to write the "boilerplate" for checking the freshness of that local data.So the idea is interesting and works to solve a known situation.