-
Global state management for react
On this pageConvex vs. FirebasenoteBackend API: Documents or Functions?Avoiding Serial Request Waterfalls// Client code in a Cloud Firestore chat app.// This loads the messages and users using multiple round trips.const querySnapshot = await getDocs(collection(db, "messages"));const userSnapshots = await Promise.all( querySnapshot.docs().map(async messageSnapshot => { return await getDoc(docSnapshot.data().creator); }));// Client code in a Convex chat app.// This loads the messages and users all in a single round trip.const messages = useQuery("listMessages");Encapsulating Business LogicReact IntegrationEnd-to-End Correctness PhilosophyReactivityTransactionsConsistent ViewsBottom LinePreviousConvex vs. Relational DatabasesNextContact Us
#React Tools #Cloud Data #Developer Tools 13 social mentions
-
Firebase is a cloud service designed to power real-time, collaborative applications for mobile and web.
"Firebase" actually refers to two separate products: Firebase Realtime Database and Cloud Firestore. This discussion focuses on Cloud Firestore because it's the newer, more scalable Firebase offering.
#Developer Tools #App Development #Backend As A Service 270 social mentions