UNPKG

syncguard

Version:

Functional TypeScript library for distributed locking across microservices. Prevents race conditions with Redis, Firestore, and custom backends. Features automatic lock management, timeout handling, and extensible architecture.

9 lines (8 loc) 282 B
/* SPDX-FileCopyrightText: 2025-present Kriasoft */ /* SPDX-License-Identifier: MIT */ /** * D-Lock Firestore Backend * * Firestore-based distributed lock implementation using @google-cloud/firestore */ export { createFirestoreBackend, createLock } from "./firestore/index.js";