
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
@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 980 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
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.