@verrou/core

0.5.0 • Public • Published

banner


Verrou 🔐 is a locking library for Node.js applications

Features

  • 🔒 Easy usage
  • 🔄 Multiple drivers (Redis, Postgres, MySQL, Sqlite, In-Memory and others)
  • 🔑 Customizable named locks
  • 🌐 Consistent API across all drivers
  • 🧪 Easy testing by switching to an in-memory driver
  • 🔨 Easily extensible with your own drivers

See documentation at verrou.dev

Why Verrou ?

Main advantage of Verrou is that it provides a consistent API across all drivers. This means that you can switch from one driver to another without having to change your code. It also means you can switch to an in-memory in your test environment, making tests faster and easier to setup (no infrastructure or anything fancy to setup).

Having a consistent API also means that you don't have to learn a new API when switching from one driver to another. Today, in the node ecosystem, we have different npm packages to manage locks, but they all have differents APIs and behaviors.

But having a consistent API doesn't mean having a less powerful API. Verrou provides every features you would expect from a locking library, and even more.

Basic usage

import { Verrou } from '@verrou/core'
import { redisStore } from '@verrou/core/drivers/redis'
import { memoryStore } from '@verrou/core/drivers/memory'

const verrou = new Verrou({
  default: 'redis',
  drivers: {
    redis: { driver: redisStore() },
    memory: { driver: memoryStore() }
  }
})

// Lock a resource and run a function
await verrou.createLock('my-resource').run(async () => {
  await doSomething()
}) // Lock is automatically released

Learn more at verrou.dev

Sponsor

If you like this project, please consider supporting it by sponsoring it. It will help a lot to maintain and improve it. Thanks a lot !

Readme

Keywords

none

Package Sidebar

Install

npm i @verrou/core

Weekly Downloads

149

Version

0.5.0

License

ISC

Unpacked Size

55.1 kB

Total Files

24

Last publish

Collaborators

  • julien-r44