
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@chenjm/nestjs-redis
Advanced tools
在app模块下导入:
import {
RedisModule
} from "@chenjm/nestjs-redis";
@Module({
imports: [
RedisModule.forRoot({
closeClient: true,
readyLog: true,
config: {
namespace: 'default',
host: '127.0.0.1',
port: 6380,
password: 'redispassword'
}
})
]
})
export class AppModule {}
也可以配合 @nestjs/config 通过configService 提供配置
import { ConfigModule, ConfigService } from "@nestjs/config";
import { RedisModule } from "@chenjm/nestjs-redis";
@Module({
imports: [
ConfigModule.forRoot({
isGlobal: true,
cache: true,
envFilePath: `${process.env.NODE_ENV}.env`,
load: [configuration],
}),
RedisModule.forRootAsync({
inject: [ConfigService],
useFactory: (configService: ConfigService) => {
return {
closeClient: true,
readyLog: true,
config: configService.get("redis"),
};
},
}),
],
})
export class AppModule {}
提示:如果不为客户机设置名称空间,则其名称空间将设置为默认名称空间。请注意,您不应该有多个没有命名空间的客户端,或者具有相同的命名空间,否则它们将被覆盖。
decorator 中使用:
import { Injectable } from '@nestjs/common';
import { InjectRedis, DEFAULT_REDIS_NAMESPACE } from '@chenjm/nestjs-redis';
import { Redis } from 'ioredis';
@Injectable()
export class AppService {
constructor(
@InjectRedis() private readonly redis: Redis
// or
// @InjectRedis(DEFAULT_REDIS_NAMESPACE) private readonly redis: Redis
) {}
async ping(): Promise<string> {
return await this.redis.ping();
}
}
service中使用:
import { Injectable } from '@nestjs/common';
import { RedisService, DEFAULT_REDIS_NAMESPACE } from '@chenjm/nestjs-redis';
import { Redis } from 'ioredis';
@Injectable()
export class AppService {
private readonly redis: Redis;
constructor(private readonly redisService: RedisService) {
this.redis = this.redisService.getClient();
// or
// this.redis = this.redisService.getClient(DEFAULT_REDIS_NAMESPACE);
}
async ping(): Promise<string> {
return await this.redis.ping();
}
}
FAQs
Redis(ioredis) module for NestJS framework
The npm package @chenjm/nestjs-redis receives a total of 3 weekly downloads. As such, @chenjm/nestjs-redis popularity was classified as not popular.
We found that @chenjm/nestjs-redis demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.