Improved the answer from @jacobawenger to not use a global state variable
var ref = new Firebase('https://.firebaseio.com');
ref.once('value', function(snapshot) {
// do something here with initial value
ref.on('child_added', function(snapshot) {
// do something here with added childs
});
});