Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@nestjs-architects/aop
Advanced tools
This package will help you make your services clean and focused on the feature. Many non-functional requirements can be easily added using Aspect-Oriented Programming.
Aspect-oriented programming with NestJS
$ npm i @nestjs-architects/aop
Create your own advice (additional piece of code executed along with the original method)
import { AdviceProvider } from '@nestjs-architects/aop';
interface LoggingOptions {
format: 'JSON' | 'TEXT';
}
class LoggingAdvice implements AdviceProvider {
async attach(
originalMethod: Function,
args: unknown[],
options: LoggingOptions,
targetObject: Record<string, (arg: unknown) => Promise<unknown> | unknown>
): Promise<unknown> {
console.log('Before...');
const result = await originalMethod(...args);
console.log('After...');
return result;
}
}
Define a decorator and attach it to your methods
import { SetMetadata } from '@nestjs/common';
const LOGGING_KEY = 'LOGGING';
export const Logging = (options: LoggingOptions) =>
SetMetadata(LOGGING_KEY, options);
@Injectable()
export class AppService {
@Logging()
getHello(): string {
console.log('Initial method called');
return 'Hello World!';
}
}
Register both as your own aspect
import { AopModule, AspectsRegistry } from '@nestjs-architects/aop';
import { Module } from '@nestjs/common';
@Module({
imports: [AopModule],
providers: [LoggingAdvice],
})
export class LoggingModule {
constructor(
private readonly registry: AspectsRegistry,
private readonly loggingAdvice: LoggingAdvice
) {
this.registry.addAspect(LOGGING_KEY, this.loggingAdvice);
}
}
Now, every time the decoreted method is called the additional code provided by you is executed too.
There are cases when you would like to create a new service dynamically, not just inject it.
For such services you can use AspectsApplier
.
import { AspectsApplier } from '@nestjs-architects/aop';
import { Injectable } from '@nestjs/common';
export class Speaker {
@Logging()
speak() {
console.log('I am not a singleton');
}
}
@Injectable()
export class AppService {
constructor(private readonly aspectsApplier: AspectsApplier) {}
speak() {
const service = new Speaker();
this.aspectsApplier.applyToProvider(service);
service.speak();
}
}
FAQs
A library that makes aspect-oriented programming simpler
The npm package @nestjs-architects/aop receives a total of 0 weekly downloads. As such, @nestjs-architects/aop popularity was classified as not popular.
We found that @nestjs-architects/aop demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.