Skip to content

Instantly share code, notes, and snippets.

@sbatson5
Created November 4, 2019 16:21
Show Gist options
  • Save sbatson5/c20e4cf90ea9049449c04251757bdcab to your computer and use it in GitHub Desktop.
Save sbatson5/c20e4cf90ea9049449c04251757bdcab to your computer and use it in GitHub Desktop.
Example of add to firebase
const firebase = require('firebase');
const db = firebase.firestore();
db.collection("users").add({
first: "Ada",
last: "Lovelace",
born: 1815
})
.then(function(docRef) {
console.log("Document written with ID: ", docRef.id);
})
.catch(function(error) {
console.error("Error adding document: ", error);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment