Firebase.analytics.logEvent("share_image") { param("id", "image123") }

Castle Blog

Featured products

Let ’em Roll is an album by American organist Big John Patton recorded in 1965 and released on the Blue Note label.

Let
‘EM
Roll

Big
John
Patton

Products by Tag

Staff picks

Products by Tag

Leave a Reply

import { getFirestore, doc, setDoc, onSnapshot } from "firebase/firestore"; const db = getFirestore(firebaseApp); // Write await setDoc(doc(db, "users", "alovelace"), { firstname: "Ada", lastname: "Lovelace", }); // Read / listen onSnapshot(doc(db, "users", "alovelace"), (docSnapshot) => { console.log("Latest data: ", docSnapshot.data()); // ... });