Skip to content

Instantly share code, notes, and snippets.

<html>
<body>
<script src="http://rawgit.com/amark/gun/master/gun.js"></script>
<script>
localStorage.clear();
var gun = Gun();
// define the snake team!
var snakes = gun.get('team/snakes').put({team: "snakes"});
@amark
amark / teams.html
Last active November 10, 2015 20:40
<html>
<body>
<script src="http://rawgit.com/amark/gun/master/gun.js"></script>
<script>
localStorage.clear(); // reset the data!
Gun.chain.joinTeam = function(team){ // extends gun to make bidirectional pointing easy!
var member = this;
member.val(function(theMember){
team.set(theMember); // link the member to the team.
});