You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Getting rolling on the new docs
* Working on the markdown
* Huh
* Firebase style TOC
* TOC links
* Placeholders for the new docs
* Breadcrumbs
* Breadcrumbs and anchor links
* h4 integrations
* Note about compat
* Fix links
* Images for the individual docs
* Auth & database
* Add updates to quickstart, firestore developer guide and installation instructions
- The quickstart guide has been modernized to feature installation details based on the latest versions of the tools.
- The Cloud Firestore developer guide has been updated to feature details on dependency injections, new examples and more
* Add updated auth developer guide
- updated the code examples to user modern Angular syntax
- added the sections on the convenience observables with examples
* update missing descriptions
* Add updated docs for products, README and quick start
* Drop ng12 from the tests, JS SDK (typescript) broke, not work hunting for a good version IMO
* Skip prerender test on ng13, broken not worth hunting the flake IMO
* Add ng15 to the matrix, add upgrade to ng14 step
* Bump the version
* Add ng15 to the acceptable peers
* Add to README
* Contrib tests are failing on newer Node, we should look into but not block merging and cutting
---------
Co-authored-by: Mark Thompson <[email protected]>
Co-authored-by: David East <[email protected]>
@@ -116,86 +119,97 @@ Get help on our [Q&A board](https://github.com/angular/angularfire/discussions?d
116
119
117
120
## Developer Guide
118
121
119
-
AngularFire has a new tree-shakable API, however this is still under active development and documentation is in the works, so we suggest most developers stick with the Compatiability API for the time being. [See the v7 upgrade guide for more information.](docs/version-7-upgrade.md).
120
-
121
-
This developer guide assumes you're using the Compatiability API (`@angular/fire/compat/*`).
122
-
123
-
### Monitor usage of your application in production
124
-
125
-
> `AngularFireAnalytics` provides a convenient method of interacting with Google Analytics in your Angular application. The provided `ScreenTrackingService` and `UserTrackingService` automatically log events when you're using the Angular Router or Firebase Authentication respectively. [Learn more about Google Analytics](https://firebase.google.com/docs/analytics).
126
-
127
-
-[Getting started with Google Analytics](docs/analytics/getting-started.md)
128
-
129
-
### Interacting with your database(s)
130
-
131
-
Firebase offers two cloud-based, client-accessible database solutions that support realtime data syncing. [Learn about the differences between them in the Firebase Documentation](https://firebase.google.com/docs/firestore/rtdb-vs-firestore).
132
-
133
-
#### Cloud Firestore
134
-
135
-
> `AngularFirestore` allows you to work with Cloud Firestore, the new flagship database for mobile app development. It improves on the successes of Realtime Database with a new, more intuitive data model. Cloud Firestore also features richer, faster queries and scales better than Realtime Database.
> `AngularFireDatabase` allows you to work with the Realtime Database, Firebase's original database. It's an efficient, low-latency solution for mobile apps that require synced states across clients in realtime.
145
-
146
-
-[Objects](docs/rtdb/objects.md)
147
-
-[Lists](docs/rtdb/lists.md)
148
-
-[Querying lists](docs/rtdb/querying-lists.md)
149
-
150
-
### Authenticate users
151
-
152
-
-[Getting started with Firebase Authentication](docs/auth/getting-started.md)
153
-
-[Route users with AngularFire guards](docs/auth/router-guards.md)
154
-
155
-
### Local Emulator Suite
156
-
157
-
-[Getting started with Firebase Emulator Suite](docs/emulators/emulators.md)
158
-
159
-
### Upload files
160
-
161
-
-[Getting started with Cloud Storage](docs/storage/storage.md)
162
-
163
-
### Receive push notifications
164
-
165
-
-[Getting started with Firebase Messaging](docs/messaging/messaging.md)
122
+
This developer guide assimes you're using the new tree-shakable AngularFire API, [if you're looking for the compatability API you can find the documentation here](docs/compat.md).
166
123
167
-
### **BETA:** Change behavior and appearance of your application without deploying
124
+
[See the v7 upgrade guide for more information on this change.](docs/version-7-upgrade.md).
168
125
169
-
>Firebase Remote Config is a cloud service that lets you change the behavior and appearance of your app without requiring users to download an app update. [Learn more about Remote Config](https://firebase.google.com/docs/remote-config).
126
+
###Firebase product integrations
170
127
171
-
-[Getting started with Remote Config](docs/remote-config/getting-started.md)
128
+
<table>
129
+
<tr>
130
+
<td>
172
131
173
-
### Monitor your application performance in production
174
-
175
-
> Firebase Performance Monitoring is a service that helps you to gain insight into the performance characteristics of your iOS, Android, and web apps. [Learn more about Performance Monitoring](https://firebase.google.com/docs/perf-mon).
132
+
#### [Analytics](docs/analytics.md#analytics)
133
+
```ts
134
+
import { } from'@angular/fire/analytics';
135
+
```
136
+
</td>
137
+
<td>
176
138
177
-
-[Getting started with Performance Monitoring](docs/performance/getting-started.md)
> Firebase Hosting is production-grade web content hosting for developers. With Hosting, you can quickly and easily deploy web apps and static content to a global content delivery network (CDN) with a single command.
> Angular Universal is a technology that allows you to run your Angular application on a server. This allows you to generate your HTML in a process called server-side rendering (SSR). AngularFire is compatible with server-side rendering; allowing you to take advantage of the Search Engine Optimization, link previews, the performance gains granted by the technology, and more. [Learn more about Angular Universal](https://angular.io/guide/universal).
The [Firebase API for Google Analytics documentation](https://firebase.google.com/docs/reference/js/analytics.md#analytics_package) is available on the Firebase website.
58
+
59
+
## Services
60
+
61
+
### ScreenTrackingService
62
+
63
+
Coming soon, for now [please review the documentation](https://firebase.google.com/docs/analytics/screenviews)
App Check helps protect your API resources from abuse by preventing unauthorized clients from accessing your backend resources. It works with both Firebase services, Google Cloud services, and your own APIs to keep your resources safe.
0 commit comments