Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given Meteor's support for eventually-consistent offline writes to data objects, automatically merging concurrent edits to the same text field seems like a natural next step. This might be done by integrating some of all of an operational transformation library (list) such as ShareJS.

Is there a desire in the Meteor team to support this functionality in the core product at some point, or would it more likely appear as a third-party add-on module?

Also, since ShareJS actually seems to provide the basic functionality of the Meteor data architecture (they mention in their documentation that it works with arbitrary JSON objects), would it perhaps be possible to do something like Meteor using ShareJS for data syncronization?

share|improve this question
I thought this was a good question, closing this as not constructive is really disruptive. What is with this zero-sum policy? @casperone – Luke Stanley Aug 21 '12 at 0:59
Eric, you could use ShareJS to do something like Meteor does, and you might side step some of the things people are waiting on Meteor for like auth and security features, if you wanted to do so. – Luke Stanley Aug 21 '12 at 1:02
@LukeStanley This question can only be answered by the Meteor team. This place is not the place to ask those questions. – casperOne Aug 21 '12 at 11:34
@casperOne It is an assumption that only the Meteor team would have valuable contributions to the question. This is a good place to ask questions, and it would be better if answers could still be given! Do you understand what I mean by the zero-sum policy? Don't you realise how powerful the community and this wiki-ish technology is? – Luke Stanley Aug 22 '12 at 19:51
@casperOne in addition, the Meteor team have stated that anyone can add themselves to their team page and submit it as a patch, which they may accept or deny in their branch. – Luke Stanley Aug 22 '12 at 19:53
show 9 more comments

closed as not constructive by Jeremiah Willcock, Perception, casperOne Apr 18 '12 at 16:06

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

I'm guessing it might be something they might add or could be done with packages.

In the meantime however: You could use Meteor.methods to expose an api to communicate to the same field back and forth. The method could do a diff on the change and merge it to the Collection before returning what should be changed on the clients computer.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.