{"id":29313055,"url":"https://github.com/brunocat118/angular_fire","last_synced_at":"2025-08-19T10:16:25.308Z","repository":{"id":300418837,"uuid":"1006130274","full_name":"BrunoCat118/Angular_Fire","owner":"BrunoCat118","description":"Angular + Firebase = 💕","archived":false,"fork":false,"pushed_at":"2025-06-21T15:28:33.000Z","size":9294,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-07T09:19:28.159Z","etag":null,"topics":["angular","angularfire","cloud-firestore","cloud-fuctions","firebase","ngrx","notifications","offline-data","realtime","realtime-database","rxjs"],"latest_commit_sha":null,"homepage":"https://firebaseopensource.com/projects/angular/angularfire2","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BrunoCat118.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-21T15:04:00.000Z","updated_at":"2025-07-03T02:03:46.000Z","dependencies_parsed_at":"2025-06-21T15:48:38.776Z","dependency_job_id":null,"html_url":"https://github.com/BrunoCat118/Angular_Fire","commit_stats":null,"previous_names":["brunocat118/angular_fire"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/BrunoCat118/Angular_Fire","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BrunoCat118%2FAngular_Fire","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BrunoCat118%2FAngular_Fire/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BrunoCat118%2FAngular_Fire/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BrunoCat118%2FAngular_Fire/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BrunoCat118","download_url":"https://codeload.github.com/BrunoCat118/Angular_Fire/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BrunoCat118%2FAngular_Fire/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271135413,"owners_count":24705102,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-19T02:00:09.176Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angular","angularfire","cloud-firestore","cloud-fuctions","firebase","ngrx","notifications","offline-data","realtime","realtime-database","rxjs"],"created_at":"2025-07-07T09:19:28.043Z","updated_at":"2025-08-19T10:16:25.254Z","avatar_url":"https://github.com/BrunoCat118.png","language":"TypeScript","readme":"\n# AngularFire\n\nAngularFire smooths over the rough edges an Angular developer might encounter when implementing the framework-agnostic\n[Firebase JS SDK](https://github.com/firebase/firebase-js-sdk) \u0026 aims to provide a more natural developer experience\nby conforming to Angular conventions.\n\n\u003cstrong\u003e\u003cpre\u003eng add @angular/fire\u003c/pre\u003e\u003c/strong\u003e\n\n- **Dependency injection** - Provide and Inject Firebase services in your components.\n- **Zone.js wrappers** - Stable zones allow proper functionality of service workers, forms, SSR, and pre-rendering.\n- **Observable based** - Utilize RxJS rather than callbacks for real-time streams.\n- **NgRx friendly API** - Integrate with NgRx using AngularFire's action based APIs.\n- **Lazy-loading** - AngularFire dynamically imports much of Firebase, reducing the time to load your app.\n- **Deploy schematics** - Get your Angular application deployed on Firebase Hosting with a single command.\n- **Google Analytics** - Zero-effort Angular Router awareness in Google Analytics.\n- **Router Guards** - Guard your Angular routes with built-in Firebase Authentication checks.\n\n## Example use\n\n```ts\nimport { provideFirebaseApp, initializeApp } from '@angular/fire/app';\nimport { getFirestore, provideFirestore } from '@angular/fire/firestore';\n\nexport const appConfig: ApplicationConfig = {\n  providers: [\n    provideFirebaseApp(() =\u003e initializeApp({ ... })),\n    provideFirestore(() =\u003e getFirestore()),\n    ...\n  ],\n  ...\n})\n```\n\n```ts\nimport { AsyncPipe } from '@angular/common';\nimport { inject } from '@angular/core';\nimport { Firestore, collectionData, collection } from '@angular/fire/firestore';\n\ninterface Item {\n  name: string,\n  ...\n};\n\n@Component({\n  selector: 'app-root',\n  template: `\n  \u003cul\u003e\n    @for (item of (item$ | async); track item) {\n      \u003cli\u003e\n        {{ item.name }}\n      \u003c/li\u003e\n    }\n  \u003c/ul\u003e\n  `,\n  imports: [AsyncPipe]\n})\nexport class AppComponent {\n  firestore = inject(Firestore);\n  itemCollection = collection(this.firestore, 'items');\n  item$ = collectionData\u003cItem\u003e(itemCollection);\n}\n```\n\n## Resources\n\n[Quickstart](docs/install-and-setup.md) - Get your first application up and running by following our quickstart guide.\n\n[Contributing](CONTRIBUTING.md)\n\n[Stackblitz Template](https://stackblitz.com/edit/angular-fire-start) - Remember to set your Firebase configuration in `app/app.module.ts`.\n\n[Upgrading from v6.0? Check out our guide.](docs/version-7-upgrade.md)\n\n### Sample app\n\nThe [`sample`](sample) folder contains a kitchen sink application that demonstrates use of the \"modular\" API, in a zoneless server-rendered application, with all the bells and whistles.\n\n### Having troubles?\n\nGet help on our [Q\u0026A board](https://github.com/angular/angularfire/discussions?discussions_q=category%3AQ%26A), the official [Firebase Mailing List](https://groups.google.com/forum/#!forum/firebase-talk), the [Firebase Community Slack](https://firebase.community/) (`#angularfire2`), the [Angular Community Discord](http://discord.gg/angular) (`#firebase`), [Gitter](https://gitter.im/angular/angularfire2), the [Firebase subreddit](https://www.reddit.com/r/firebase), or [Stack Overflow](https://stackoverflow.com/questions/tagged/angularfire2).\n\n\u003e **NOTE:** While relatively stable, AngularFire is a [developer preview](https://angular.io/guide/releases#developer-preview) and is subject to change before general availability. Questions on the mailing list and issues filed here are answered on a \u003cstrong\u003ebest-effort basis\u003c/strong\u003e by maintainers and other community members. If you are able to reproduce a problem with Firebase \u003cem\u003eoutside of AngularFire's implementation\u003c/em\u003e, please [file an issue on the Firebase JS SDK](https://github.com/firebase/firebase-js-sdk/issues) or reach out to the personalized [Firebase support channel](https://firebase.google.com/support/).\n\n## Developer Guide\n\nThis developer guide assumes you're using the new tree-shakable AngularFire API, [if you're looking for the compatibility API you can find the documentation here](docs/compat.md).\n\n[See the v7 upgrade guide for more information on this change.](docs/version-7-upgrade.md).\n\n### Firebase product integrations\n\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\n\n#### [Analytics](docs/analytics.md#analytics)\n```ts\nimport { } from '@angular/fire/analytics';\n```\n\u003c/td\u003e\n    \u003ctd\u003e\n\n#### [Authentication](docs/auth.md#authentication)\n```ts\nimport { } from '@angular/fire/auth';\n```\n\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\n\n#### [Cloud Firestore](docs/firestore.md#cloud-firestore)\n```ts\nimport { } from '@angular/fire/firestore';\n```\n\u003c/td\u003e\n    \u003ctd\u003e\n\n#### [Cloud Functions](docs/functions.md#cloud-functions)\n```ts\nimport { } from '@angular/fire/functions';\n```\n\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\n\n#### [Cloud Messaging](docs/messaging.md#cloud-messaging)\n```ts\nimport { } from '@angular/fire/messaging';\n```\n\u003c/td\u003e\n    \u003ctd\u003e\n\n#### [Cloud Storage](docs/storage.md#cloud-storage)\n```ts\nimport { } from '@angular/fire/storage';\n```\n\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\n\n#### [Performance Monitoring](docs/performance.md#performance-monitoring)\n```ts\nimport { } from '@angular/fire/performance';\n```\n\u003c/td\u003e\n    \u003ctd\u003e\n\n#### [Realtime Database](docs/database.md#realtime-database)\n```ts\nimport { } from '@angular/fire/database';\n```\n\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\n\n#### [Remote Config](docs/remote-config.md#remote-config)\n```ts\nimport { } from '@angular/fire/remote-config';\n```\n\u003c/td\u003e\n    \u003ctd\u003e\n\n#### [App Check](docs/app-check.md#app-check)\n```ts\nimport { } from '@angular/fire/app-check';\n```\n\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\n\n#### [Vertex AI](docs/vertexai.md#vertex-ai)\n```ts\nimport { } from '@angular/fire/vertexai';\n```\n\u003c/td\u003e\n\n  \u003c/tr\u003e\n\u003c/table\u003e\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrunocat118%2Fangular_fire","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrunocat118%2Fangular_fire","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrunocat118%2Fangular_fire/lists"}