https://github.com/chat-sdk/firestream-web
https://github.com/chat-sdk/firestream-web
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/chat-sdk/firestream-web
- Owner: chat-sdk
- Created: 2019-12-24T17:13:41.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-03T11:39:24.000Z (over 6 years ago)
- Last Synced: 2025-01-12T14:29:37.045Z (over 1 year ago)
- Language: TypeScript
- Size: 271 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FireStream JS
## Initializing FireStream with Firebase App
```js
import * as firebase from 'firebase/app'
import 'firebase/auth'
import 'firebase/database' // only required using the Realtime Database
import 'firebase/firestore' // only required using the Firestore
import { Fire } from 'firestream'
const app = firebase.initializeApp({ /* firebaseConfig */ })
Fire.Stream.initialize(app)
```