Skip to content

Instantly share code, notes, and snippets.

@arisolt
Created January 29, 2013 15:31
Show Gist options
  • Save arisolt/4665117 to your computer and use it in GitHub Desktop.
Save arisolt/4665117 to your computer and use it in GitHub Desktop.
var dnode = require('dnode');
var stuff = "the stuff";
var server = dnode({
getStuff : function (cb) {
cb(stuff);
}
});
server.listen(9000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment