var gun = Gun('https://gunjs.herokuapp.com/gun'); gun.set({hello: "world"}).key('example/tutorial');
var ref = gun.load('example/tutorial'); ref.on(function(data){ $('body').text(JSON.stringify(data)); });
ref.path('').set("");