Update quick-start.md

This commit is contained in:
Elliot Hesp
2019-09-20 12:12:11 +01:00
committed by GitHub
parent ff34067ffb
commit f08c93d0d9

View File

@@ -7,8 +7,12 @@ description: Getting started with Cloud Firestore in React Native Firebase
## Module usage
This module depends on the `@react-native-firebase/app` module. To get started and install `app`,
visit the project's <Anchor version={false} group={false} href="/quick-start">quick start</Anchor> guide.
This module depends on the `@react-native-firebase/app` & `@react-native-firebase/auth` module. To get started and install `app`:
| Module | |
|-------------------------------|-------------|
| `@react-native-firebase/app` | <Anchor version={false} group={false} href="/quick-start">Quick Start</Anchor> |
| `@react-native-firebase/auth` | <Anchor version group="auth" href="/quick-start">Quick Start</Anchor> |
The Cloud Firestore module follows the same API as the [Web SDK](https://firebase.google.com/docs/reference/js/firebase.firestore), however takes advantage of the native SDKs. This provides advantages such as improved performance versus using the Web SDK, as all work is carried out natively in separate threads, preventing issues such as [jank](https://facebook.github.io/react-native/docs/performance#js-frame-rate-javascript-thread). The module also works in offline mode, using device storage.