@discue/idempotent-firebase-functions

0.2.0 • Public • Published

Vue logo


GitHub tag Latest Stable Version License
NPM Downloads NPM Downloads
contributions - welcome Made with Node.js

idempotent-firebase-functions

Because firebase does not guarentee firestore events get triggered only once, we need to ensure idempotency ourselves. This module provides helper functions to create idempotent functions easily.

Components

Example

Examples

import { onDocumentWritten } from 'firebase-functions/v2/firestore';
import { idempotentFunction } from '@discue/idempotent-firebase-functions';
import handler from './handler.js'

const DOCUMENT_PATH = 'api_clients/{apiClientId}/queues/{queueId}/messages/{messageId}'
// handler function will only be called once per firebase event id
// effectively making it an idempotent function
export const written = onDocumentWritten(DOCUMENT_PATH, idempotentFunction(handler))

Installation

npm install @discue/idempotent-firebase-functions

Run E2E Tests

To run tests, run the following command

./test-e2e.sh

License

MIT

Package Sidebar

Install

npm i @discue/idempotent-firebase-functions

Weekly Downloads

1

Version

0.2.0

License

MIT

Unpacked Size

10.5 kB

Total Files

6

Last publish

Collaborators

  • stfsy