firebase

Featured

Firebase Firestore, Auth, Storage, real-time listeners, security rules

API & Backend 694 stars 57 forks Updated today MIT

Install

View on GitHub

Quality Score: 98/100

Stars 20%
95
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Firebase Skill Firebase/Firestore patterns for web and mobile applications with real-time data, offline support, and security rules. **Sources:** [Firebase Docs](https://firebase.google.com/docs) | [Firestore Best Practices](https://firebase.google.com/docs/firestore/best-practices) | [Security Rules](https://firebase.google.com/docs/rules) --- ## Core Principle **Denormalize with purpose, secure with rules, scale horizontally.** Firestore is a document database - embrace denormalization for read efficiency. Security rules are your server-side validation. Design for your access patterns. --- ## Firebase Stack | Service | Purpose | |---------|---------| | **Firestore** | NoSQL document database with real-time sync | | **Authentication** | User auth, OAuth, anonymous sessions | | **Storage** | File uploads with security rules | | **Functions** | Serverless backend (Node.js) | | **Hosting** | Static site + CDN | | **Extensions** | Pre-built solutions (Stripe, Algolia, etc.) | --- ## Project Setup ### Install Firebase CLI ```bash # Install globally npm install -g firebase-tools # Login firebase login # Initialize in project firebase init ``` ### Initialize with Emulators ```bash firebase init emulators # Start local development firebase emulators:start ``` ### Project Structure ``` project/ ├── firebase.json # Firebase config ├── firestore.rules # Security rules ├── firestore.indexes.json # Composite indexes ├── storage.rules # Sto...

Details

Author
alinaqi
Repository
alinaqi/maggy
Created
5 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category