-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Hello World
Mark Nadal edited this page Feb 9, 2018
·
20 revisions
Write a quick app: (try now in jsbin)
<script src="https://cdn.jsdelivr.net/npm/gun/gun.js"></script>
<script>
// var Gun = require('gun'); // in NodeJS
// var Gun = require('gun/gun'); // in React
var gun = Gun();
gun.get('mark').put({
name: "Mark",
email: "[email protected]",
});
gun.get('mark').on(function(data, key){
console.log("update:", data);
});
</script>
TODO: Add more explanation. Is it possible to integrate gun.js.org Try It Now live demo?