Skip to content

Files

Latest commit

f05fc93 · Oct 9, 2017

History

History
This branch is 751 commits behind firebase/functions-samples:main.

presence-firestore

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Oct 9, 2017
Oct 3, 2017
Sep 30, 2017
Sep 30, 2017

Presence in Firestore

This template shows you how to build a presence (understanding which users are online / offline) in Cloud Firestore and Realtime Database.

Functions Code

See file functions/index.js for the code.

The dependencies are listed in functions/package.json.

Sample Database Structure

As an example we'll be using a secure note structure:

/status
    /UID_A
        state: "online"
    /UID_B
        state: "offline"

Whenever a new note is created or modified a Function sends the content to be indexed to the Algolia instance.