https://github.com/ekrem-kocak/generic-firestore-service
Generic Firestore Service in Angular
https://github.com/ekrem-kocak/generic-firestore-service
angular firebase firestore firestore-database
Last synced: 2 months ago
JSON representation
Generic Firestore Service in Angular
- Host: GitHub
- URL: https://github.com/ekrem-kocak/generic-firestore-service
- Owner: ekrem-kocak
- Created: 2024-11-04T20:06:38.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-11-09T17:49:19.000Z (over 1 year ago)
- Last Synced: 2025-08-03T22:45:53.448Z (11 months ago)
- Topics: angular, firebase, firestore, firestore-database
- Language: TypeScript
- Homepage: https://stackblitz.com/~/github.com/ekrem-kocak/generic-firestore-service
- Size: 127 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Angular Firebase Firestore - Generic CRUD Service
This project shows how to create a **Generic Firestore CRUD Service** in an Angular app using Firebase. The service is reusable and can handle any Firestore collection, making it easy to manage different data models with less code.
## Features
- **Generic Firestore Service**: Centralized CRUD operations for any Firestore collection.
- **Todo Example**: A `TodoService` and `TodoComponent` to demonstrate usage.
- **Quick Integration**: Easy setup for Firebase Firestore in Angular projects.
## Getting Started
1. Install dependencies:
```bash
npm install
2. Run the app:
```bash
ng serve -o
## Medium Article
For a detailed tutorial, check out the [Medium article](https://ekrem-kocak.medium.com/building-a-generic-firestore-service-in-angular-d07767b093db) for this project.