Skip to content

Instantly share code, notes, and snippets.

@bitnom
Created July 6, 2019 17:04
Show Gist options
  • Save bitnom/881c1863ff1823db2f9a47896fd98981 to your computer and use it in GitHub Desktop.
Save bitnom/881c1863ff1823db2f9a47896fd98981 to your computer and use it in GitHub Desktop.
Gun client
var Gun = require('gun');
var peersAr = ['http://tensortom.com:8080/gun'];
var gun = Gun({peers: peersAr});
gun.get('mark').put({
name: "Mark",
email: "mark@gunDB.io",
});
gun.get('mark').on(function(data, key){
console.log("update:", data);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment