Skip to content

Instantly share code, notes, and snippets.

@fredriccliver
Last active August 21, 2020 07:58
Show Gist options
  • Save fredriccliver/dd16072682b96f528e6c92757da53d31 to your computer and use it in GitHub Desktop.
Save fredriccliver/dd16072682b96f528e6c92757da53d31 to your computer and use it in GitHub Desktop.
db.collection("recipes")
.get()
.then((snapshot) => {
snapshot.forEach((element) => {
console.log(element.data())
})
})
.catch((err) => console.log(err))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment