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

@miinded/nestjs-redis-cache

v1.0.1

Published

Production-ready NestJS module for Redis caching with ioredis integration.

Readme

@miinded/nestjs-redis-cache

npm version License: MIT

Production-ready NestJS module for Redis caching with ioredis integration. Features get/set/delete with TTL support, pattern-based key scanning, and full TypeScript support.

Features

  • ioredis Powered — Built on the battle-tested ioredis client
  • 🔄 TTL Support — Set per-key expiration in seconds
  • 🔍 Key Scanning — Find keys by glob pattern with keys
  • ⏱️ TTL Inspection — Read remaining TTL for any key
  • 🌍 Global Module — Register once, inject RedisCacheService anywhere
  • 📝 Full TypeScript — Complete type definitions for excellent DX
  • Well Tested — Unit tests with 80%+ coverage

Installation

npm install @miinded/nestjs-redis-cache
# or
pnpm add @miinded/nestjs-redis-cache
# or
yarn add @miinded/nestjs-redis-cache

Quick Start

Async configuration with ConfigService

import { Module } from '@nestjs/common';
import { ConfigModule, ConfigService } from '@nestjs/config';
import { RedisCacheModule } from '@miinded/nestjs-redis-cache';

@Module({
  imports: [
    ConfigModule.forRoot(),
    RedisCacheModule.registerAsync({
      imports: [ConfigModule],
      inject: [ConfigService],
      useFactory: (config: ConfigService) => ({
        host: config.getOrThrow('REDIS_HOST'),
        port: config.getOrThrow<number>('REDIS_PORT'),
        password: config.get('REDIS_PASSWORD'),
        db: config.get<number>('REDIS_DB', 0),
      }),
    }),
  ],
})
export class AppModule {}

Static configuration

import { Module } from '@nestjs/common';
import { RedisCacheModule } from '@miinded/nestjs-redis-cache';

@Module({
  imports: [
    RedisCacheModule.registerAsync({
      useFactory: () => ({
        host: 'localhost',
        port: 6379,
      }),
    }),
  ],
})
export class AppModule {}

Usage Example

import { Injectable } from '@nestjs/common';
import { RedisCacheService } from '@miinded/nestjs-redis-cache';

@Injectable()
export class UserService {
  constructor(private readonly cache: RedisCacheService) {}

  async getUser(id: string) {
    const cached = await this.cache.get(`user:${id}`);
    if (cached) return JSON.parse(cached) as User;

    const user = await this.usersRepository.findOneOrFail({ where: { id } });
    await this.cache.set(`user:${id}`, JSON.stringify(user), 300);
    return user;
  }

  async invalidateUser(id: string) {
    await this.cache.del(`user:${id}`);
  }

  async invalidateAllUsers() {
    const keys = await this.cache.keys('user:*');
    await Promise.all(keys.map((k) => this.cache.del(k)));
  }
}

API Reference

RedisCacheModule.registerAsync(options)

| Option | Type | Required | Description | | ------------ | -------------------------- | -------- | ----------------------------------------- | | useFactory | (...args) => RedisConfig | ✅ | Factory returning Redis connection config | | inject | any[] | ❌ | Dependencies to inject into factory | | imports | Module[] | ❌ | Modules to import |

RedisConfig

| Option | Type | Required | Description | | ---------- | -------- | -------- | ----------------------------------- | | host | string | ✅ | Redis host | | port | number | ✅ | Redis port | | password | string | ❌ | Redis auth password | | db | number | ❌ | Redis database index (default: 0) |

RedisCacheService

| Method | Signature | Description | | ------ | ------------------------------------------------------------- | --------------------------------------------------------------- | | get | (key: string) => Promise<string \| null> | Get a cached value, or null if missing | | set | (key: string, value: string, ttl?: number) => Promise<void> | Set a value with optional TTL in seconds | | del | (key: string) => Promise<void> | Delete a key | | keys | (pattern: string) => Promise<string[]> | Find all keys matching a glob pattern | | ttl | (key: string) => Promise<number> | Get remaining TTL in seconds (-1 = no expiry, -2 = missing) |

License

MIT © Miinded