npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

algolia-firebase-functions

v7.0.0

Published

Cloud Functions for sync Firebase Database with Algolia in real time

Readme

Algolia <-> Firebase cloud functions

npm Tests Docs Codacy Badge

Useful library to keep your Firebase Database of Firebase Cloud Firestore data in sync with Algolia for easy search.

Starting from version 2.0, this library supports Cloud Functions v1.0. If you need to support beta Cloud Functions, use version 1.0.3 instead.

Starting from version 4.0.0, this library supports Node >= 10 and no longer supports Node 8. If you still need to support Node 8, use version 3.3.0 instead.

Starting from version 4.1.2, this library supports only ES6 modules or Typescript.

Starting from version 5.0.0, this library supports Node >= 14 and no longer supports Node 10 and 12. If you still need to support Node 10 or 12, use version 4.1.2 instead.

Starting from version 6.0.0, this library uses Algolia SDK v5 and supports Node version 18 and up.

Starting from version 7.0.0, this library supports can be used only with v2 Cloud Functions and Node version 20 and up.

Installation

In your functions directory:

 npm install --save algolia-firebase-functions

Usage

To use this library in your Functions, first of all you need to set environmental variables for Algolia to initialize connection. Grab your Algolia credentials from the dashboard first and add them to your .env file or enter them during deployment.

You can configure your AlgoliaSearch client like this:

import { defineString } from "firebase-functions/params";
import { searchClient } from "@algolia/client-search";

const algoliaApp = defineString("ALGOLIA_APP_ID");
const algoliaKey = defineString("ALGOLIA_KEY");
const algoliaIndex = defineString("ALGOLIA_INDEX");

const algolia = searchClient(
  algoliaApp.value(),
  algoliaKey.value(),
);

Then you can set up the function for synchronizing Realtime Database like this:

import { onValueWritten } from "firebase-functions/v2/database";
import { initializeApp } from "firebase-admin/app";
import { syncAlgoliaWithFirebase } from "algolia-firebase-functions";

initializeApp();

export const syncAlgoliaFunction = onValueWritten("/myRef/{childRef}", (event) =>
    syncAlgoliaWithFirebase(algolia, algoliaIndex.value(), event.data),
  );

If you're using Firebase Cloud Firestore, you can use the following code:

import { onDocumentWritten } from 'firebase-functions/v2/firestore';
import { syncAlgoliaWithFirestore } from 'algolia-firebase-functions';

export const syncAlgoliaFunction = onDocumentWritten('/myDocument/{childDocument}',
   (event) => syncAlgoliaWithFirestore(algolia, index, event.data);
);

And redeploy your functions:

firebase deploy --only functions

Now, after any changes made with your references, it will be sent to Algolia, so you'll be sure that users can search on the newest data.