You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

nestjs-ioredis-module

Package Overview
Dependencies
Maintainers
0
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nestjs-ioredis-module

Redis Module With Nest, ioredis

1.0.14
latest
Source
npmnpm
Version published
Maintainers
0
Created
Source

NestJS ioredis Module

A Redis module for NestJS, providing a simple way to integrate Redis into your NestJS application With ioredis.

Installation

npm install nestjs-redis-module

Usage

@Module({
    imports: [
        RedisModule.forRoot({
            type: 'single',
            host: 'localhost',
            port: 6379,
        }),
    ],
})
export class AppModule {}

Although it supports cluster mode, the creator himself has not yet developed it in a cluster mode environment.

License

MIT

Keywords

nest

FAQs

Package last updated on 28 Feb 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts