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

nestjs-redis-lock

v2.0.2

Published

NestJS decorator-based Redis distributed lock using Redlock

Readme

nestjs-redis-lock

A NestJS decorator-based Redis distributed lock module using Redlock

Provides a simple @RedisLock() decorator to prevent concurrent job executions across multiple instances (e.g., Cron jobs, tasks)


Installation

npm install nestjs-redis-lock ioredis redlock @nestjs/config

Usage

  1. Register ConfigModule & Import The Module

    import { ConfigModule } from '@nestjs/config';
    import { RedisLockModule } from 'nestjs-redis-lock';
    
    @Module({
        imports: [
            ConfigModule.forRoot({
                isGlobal: true,
                envFilePath: '.env',
            }),
            RedisLockModule
        ],
    })
    export class AppModule {}
  2. Apply The @RedisLock() Decorator

    import { Injectable } from '@nestjs/common';
    import { RedisLock } from 'nestjs-redis-lock';
    
    @Injectable()
    export class MyService {
        @RedisLock({ ttl: 1000 * 10 }) // optional: key
        async handleJob(): Promise<void> {
            console.log('Job started...');
            await new Promise((res) => setTimeout(res, 5000));
            console.log('Job finished!');
        }
    }

    ⚠️ Note

    • The @RedisLock() decorator applies to methods in classes that are registered as providers (which are typically marked with @Injectable())
    • While @Injectable() is not strictly required if the class is registered manually, it is strongly recommended
    • Methods in @Controller() classes are not supported
  3. Set Environment Variables

    REDIS_HOST=localhost
    REDIS_PORT=6379

How It Works

  • The @RedisLock() decorator stores metadata on methods in registered providers
  • At module startup, all providers (except controllers) are scanned for decorated methods
  • These methods are dynamically wrapped to acquire a distributed lock using Redlock before execution
  • If the lock is acquired, the method runs; otherwise, it is skipped or throws an error (based on implementation)
  • After the method completes, the lock is released. If it has already expired (e.g., due to TTL), the lock manager logs a debug message with the key

Debugging

When a task takes longer than the lock TTL, the lock may expire before it is released. In this case, the system logs a debug message like the following :

[ DEBUG ] Lock release skipped (likely expired) : redisKey="batch-server:lock:MyService.handleJob"

License

MIT