syncguard
Version:
Functional TypeScript library for distributed locking across microservices. Prevents race conditions with Redis, PostgreSQL, Firestore, and custom backends. Features automatic lock management, timeout handling, and extensible architecture.
8 lines (7 loc) • 355 B
JavaScript
// SPDX-FileCopyrightText: 2025-present Kriasoft
// SPDX-License-Identifier: MIT
export { createAcquireOperation } from "./acquire.js";
export { createExtendOperation } from "./extend.js";
export { createIsLockedOperation } from "./is-locked.js";
export { createLookupOperation } from "./lookup.js";
export { createReleaseOperation } from "./release.js";