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