Skip to content

Instantly share code, notes, and snippets.

@markreale
Last active May 28, 2019 12:31
Show Gist options
  • Save markreale/bd014a2f50e8a92296eb3d61a2acf3df to your computer and use it in GitHub Desktop.
Save markreale/bd014a2f50e8a92296eb3d61a2acf3df to your computer and use it in GitHub Desktop.
Firestore - event listener for when the Collection in the database updates - allows for "Live Updates"
db.collection("[YOUR_COLLECTION]").onSnapshot(function(querySnapshot){
// Things to do whenever the Firestore database Snapshot updates
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment