{"id":13398163,"url":"https://github.com/FirebaseExtended/angularfire","last_synced_at":"2025-03-14T02:30:43.197Z","repository":{"id":7604326,"uuid":"8962069","full_name":"FirebaseExtended/angularfire","owner":"FirebaseExtended","description":"AngularJS bindings for Firebase","archived":false,"fork":false,"pushed_at":"2020-12-15T14:28:28.000Z","size":1938,"stargazers_count":2727,"open_issues_count":1,"forks_count":631,"subscribers_count":211,"default_branch":"master","last_synced_at":"2024-09-28T09:08:16.231Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/FirebaseExtended.png","metadata":{"files":{"readme":"README.md","changelog":"changelog.txt","contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-03-22T22:18:38.000Z","updated_at":"2024-09-23T14:02:17.000Z","dependencies_parsed_at":"2022-07-31T15:39:10.300Z","dependency_job_id":null,"html_url":"https://github.com/FirebaseExtended/angularfire","commit_stats":null,"previous_names":["firebase/angularfire"],"tags_count":29,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FirebaseExtended%2Fangularfire","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FirebaseExtended%2Fangularfire/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FirebaseExtended%2Fangularfire/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FirebaseExtended%2Fangularfire/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FirebaseExtended","download_url":"https://codeload.github.com/FirebaseExtended/angularfire/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":221428904,"owners_count":16819247,"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","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":[],"created_at":"2024-07-30T19:00:18.792Z","updated_at":"2024-10-25T13:31:05.139Z","avatar_url":"https://github.com/FirebaseExtended.png","language":"JavaScript","readme":"# AngularFire _(for AngularJS)_ [![Build Status](https://travis-ci.org/firebase/angularfire.svg?branch=master)](https://travis-ci.org/firebase/angularfire) [![Coverage Status](https://coveralls.io/repos/firebase/angularfire/badge.svg?branch=master\u0026service=github)](https://coveralls.io/github/firebase/angularfire?branch=master) [![Version](https://badge.fury.io/gh/firebase%2Fangularfire.svg)](http://badge.fury.io/gh/firebase%2Fangularfire)\n\n**⚠️ Looking for the new AngularFire?** If you're using Angular you'll want to check out [@angular/fire](https://github.com/angular/angularfire).\n\n## Status\n\n![Status: Frozen](https://img.shields.io/badge/Status-Frozen-yellow)\n\nThis repository is no longer under active development. No new features will be added and issues are not actively triaged. Pull Requests which fix bugs are welcome and will be reviewed on a best-effort basis.\n\nIf you maintain a fork of this repository that you believe is healthier than the official version, we may consider recommending your fork. Please open a Pull Request if you believe that is the case.\n\n[AngularJS will be in LTS until December 31\u003csup\u003est\u003c/sup\u003e, 2021](https://blog.angular.io/stable-angularjs-and-long-term-support-7e077635ee9c) after which this library will be deprecated.\n\n----\n\nAngularFire is the officially supported [AngularJS](https://angularjs.org/) binding for\n[Firebase](https://firebase.google.com/). Firebase is a backend service that provides data storage,\nfile storage, authentication, and static website hosting for your Angular app.\n\nAngularFire is a complement to the core Firebase client. It provides you with several Angular\nservices:\n  * `$firebaseObject` - synchronized objects\n  * `$firebaseArray` - synchronized collections\n  * `$firebaseStorage` - store and retrieve user-generated content like images, audio, and video\n  * `$firebaseAuth` - authentication, user management, routing\n\nJoin our [Firebase Google Group](https://groups.google.com/forum/#!forum/firebase-talk)\nto ask questions, provide feedback, and share apps you've built with AngularFire.\n\n## Table of Contents\n\n * [Getting Started With Firebase](#getting-started-with-firebase)\n * [Downloading AngularFire](#downloading-angularfire)\n * [Documentation](#documentation)\n * [Examples](#examples)\n * [Migration Guides](#migration-guides)\n * [Contributing](#contributing)\n\n\n## Getting Started With Firebase\n\nAngularFire requires [Firebase](https://firebase.google.com/) in order to authenticate users and sync\nand store data. Firebase is a suite of integrated products designed to help you develop your app,\ngrow your user base, and earn money. You can [sign up here for a free account](https://console.firebase.google.com/).\n\n\n## Downloading AngularFire\n\nIn order to use AngularFire in your project, you need to include the following files in your HTML:\n\n```html\n\u003c!-- AngularJS --\u003e\n\u003cscript src=\"https://ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular.min.js\"\u003e\u003c/script\u003e\n\n\u003c!-- Firebase --\u003e\n\u003cscript src=\"https://www.gstatic.com/firebasejs/3.6.6/firebase.js\"\u003e\u003c/script\u003e\n\n\u003c!-- AngularFire --\u003e\n\u003cscript src=\"https://cdn.firebase.com/libs/angularfire/2.3.0/angularfire.min.js\"\u003e\u003c/script\u003e\n```\n\nYou can also install AngularFire via npm and Bower and its dependencies will be downloaded\nautomatically:\n\n```bash\n$ npm install angularfire --save\n```\n\n```bash\n$ bower install angularfire --save\n```\n\n\n## Documentation\n\n* [Quickstart](docs/quickstart.md)\n* [Guide](docs/guide/README.md)\n* [API Reference](docs/reference.md)\n\n\n## Examples\n\n### Full Examples\n\n* [Wait And Eat](https://github.com/gordonmzhu/angular-course-demo-app-v2)\n* [TodoMVC](https://github.com/tastejs/todomvc/tree/master/examples/firebase-angular)\n* [Tic-Tac-Tic-Tac-Toe](https://github.com/jwngr/tic-tac-tic-tac-toe/)\n* [Firereader](http://github.com/firebase/firereader)\n* [Firepoker](https://github.com/Wizehive/Firepoker)\n\n### Recipes\n\n* [Date Object To A Firebase Timestamp Using `$extend`](http://jsfiddle.net/katowulf/syuzw9k1/)\n* [Filter a `$FirebaseArray`](http://jsfiddle.net/firebase/ku8uL0pr/)\n\n\n## Migration Guides\n\n* [Migrating from AngularFire `1.x.x` to `2.x.x`](docs/migration/1XX-to-2XX.md)\n* [Migrating from AngularFire `0.9.x` to `1.x.x`](docs/migration/09X-to-1XX.md)\n\n\n## Contributing\n\nIf you'd like to contribute to AngularFire, please first read through our [contribution\nguidelines](.github/CONTRIBUTING.md). Local setup instructions are available [here](.github/CONTRIBUTING.md#local-setup).\n","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FFirebaseExtended%2Fangularfire","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FFirebaseExtended%2Fangularfire","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FFirebaseExtended%2Fangularfire/lists"}