Skip to content

Instantly share code, notes, and snippets.

@a10k
Created February 29, 2016 21:21
Show Gist options
  • Save a10k/0f82c4013e08cecddd66 to your computer and use it in GitHub Desktop.
Save a10k/0f82c4013e08cecddd66 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<body>
<script src="https://cdn.firebase.com/js/client/2.4.1/firebase.js"></script>
<script type="text/javascript">
var fb = new Firebase("https://radiant-fire-5095.firebaseio.com");
fb.child('name').on('value',function(d){console.log(d.val())});
fb.set({'name':'alok'});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment