
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@tc-libs/app-cache
Advanced tools
Astrazione cache per NestJS basata su `@nestjs/cache-manager`. Supporta due modalita:
Astrazione cache per NestJS basata su @nestjs/cache-manager. Supporta due modalita:
enabled e falseenabled e trueIl package viene usato soprattutto dai repository Mongo del monorepo per cacheare query e count.
AppCacheModule.register(
true,
{
enabled: true,
ttl: 60,
server: {
host: '127.0.0.1',
port: 6379,
},
},
true,
);
Versione async:
AppCacheModule.registerAsync(
true,
{
imports: [ConfigModule],
inject: [ConfigService],
useFactory: async (config: ConfigService) => ({
enabled: true,
ttl: 60,
server: {
host: config.getOrThrow<string>('REDIS_HOST'),
port: config.getOrThrow<number>('REDIS_PORT'),
},
}),
},
true,
);
AppCacheService espone i metodi usati dal resto del monorepo:
getCachedDataByQuery(functionName, find, options)getCachedDataByKey(key)saveToCache(key, data, options)Lato repository il pattern tipico e:
const { data, key } = await this.cache.getCachedDataByQuery(
'findOne',
find,
options,
);
if (data) return data;
this.cache.saveToCache(key, result, options);
functionName, filtro e opzioni tramite hash SHA1 Base64.options.caching.enabled.options.caching.key.import {
AppCacheModule,
AppCacheService,
ICachingOptions,
} from '@tc-libs/app-cache';
nx build app-cache
nx test app-cache
FAQs
Astrazione cache per NestJS basata su `@nestjs/cache-manager`. Supporta due modalita:
We found that @tc-libs/app-cache demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.