Skip to content

Files

Latest commit

f3320e3 · Mar 27, 2019

History

History
This branch is 4 commits ahead of, 380 commits behind firebase/functions-samples:main.

limit-children

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Mar 27, 2019
Mar 10, 2017

Limit number of child nodes

This template shows how to keep the number of child nodes in a Firebase database below a given number. This can be used to limit the number of lines of a chat history or logs.

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 simple chat database structure:

/functions-project-12345
    /chat
        /key-123456
            user: "Mat",
            text: "Hey Bob!"
        /key-123457
            user: "Bob",
            text: "Hey Mat! What's Up?"

Every time a new chat message is added the Function runs. It counts the number of chat messages and removes the old ones if there are too many.