An experiment experience in Open Source Software
Alex LaFroscia
@alexlafroscia
var gun = Gun( /* config stuff in here */ );
// Getting...
gun.load('this_is_my_key').get(function(value) {
// Prints the value to the store
console.log(value);
});
// ... and Setting
gun.load('this_is_my_key').set({
hello: world,
foo: bar
});
https://github.com/alexlafroscia/stickies