firebase
Installation
SKILL.md
Firebase (Firestore & Realtime Database)
Firebase provides two NoSQL databases:
- Cloud Firestore: The newer, recommended scalable database.
- Realtime Database: The original low-latency JSON tree sync.
When to Use
- Mobile Apps: Best-in-class integration with Android/iOS/Flutter.
- Realtime Sync: Chat apps, live dashboards.
- Offline Support: Outstanding offline SDK capabilities.
Quick Start (Firestore)
import { getFirestore, collection, addDoc } from "firebase/firestore";
const db = getFirestore(app);