crcn / dsync.js

synchronize dnode objects

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

###Example

var dsync = require("dsync");

var target = {
	name: "craig",
	save: function() {
		//do nothing
	},
	toPublic: function() {
		return target;
	}
};


var syncable = dsync(target);

About

synchronize dnode objects


Languages

Language:JavaScript 100.0%