
Security News
Scaling Socket from Zero to 10,000+ Organizations
Socket CEO Feross Aboukhadijeh shares lessons from scaling a developer security startup to 10,000+ organizations in this founder interview.
@eggjs/tegg-aop-plugin
Advanced tools
// plugin.js
export.aopModule = {
enable: true,
package: '@eggjs/tegg-aop-plugin',
};
使用 @Advice 注解来申明一个实现,可以用来监听、拦截方法执行。
注意:Advice 也是一种 Prototype,可以通过 initType 来指定不同的生命周期,默认为 Singleton。
如需在调用过程中保存状态,可以将状态通过 AdviceContext 的 get/set 来保存。
import { Advice, IAdvice } from '@eggjs/tegg/aop';
const FOO_STATE_SYMBOL = Symbol('AdviceExample#state');
@Advice()
export class AdviceExample implements IAdvice {
// Advice 中可以正常的注入其他的对象
@Inject()
private readonly callTrace: CallTrace;
// 在函数执行前执行
async beforeCall(ctx: AdviceContext): Promise<void> {
// ...
ctx.set(FOO_STATE_SYMBOL, 23333);
}
// 在函数成功后执行
async afterReturn(ctx: AdviceContext, result: any): Promise<void> {
// 将会打印 23333
console.log(ctx.get(FOO_STATE_SYMBOL));
}
// 在函数成功后执行
async afterThrow(ctx: AdviceContext, error: Error): Promise<void> {
// ...
}
// 在函数退出时执行
async afterFinally(ctx: AdviceContext): Promise<void> {
}
// 类似 koa 中间件的模式
// block = next
async around(ctx: AdviceContext, next: () => Promise<any>): Promise<any> {
}
}
使用 @Pointcut 在某个类特定的方法上申明一个 Advice
import { Pointcut } from '@eggjs/tegg/aop';
import { ContextProto } from '@eggjs/tegg';
@ContextProto()
export class Hello {
// 创建 Hello.hello 的切面 AdviceExample,并传递 adviceParams 给 AdviceExample
// AdviceExample 的切面函数可以通过 ctx.adviceParams 拿到注解传入的参数
@Pointcut(AdviceExample, { adviceParams: { foo: 'bar' } })
async hello(name: string) {
return `hello ${name}`;
}
}
使用 @Crosscut 来声明一个通用的 Advice,有三种模式
注意:egg 中的对象无法被 Crosscut 指定到。
import { Crosscut, Advice, IAdvice } from '@eggjs/tegg/aop';
// 通过类型来指定
// 创建 CrosscutClassAdviceExample.hello 的切面 CrosscutExample,并传递 adviceParams 给 CrosscutExample
// CrosscutExample 的切面函数可以通过 ctx.adviceParams 拿到注解传入的参数
@Crosscut({
type: PointcutType.CLASS,
clazz: CrosscutExample,
methodName: 'hello',
}, { adviceParams: { foo: 'bar' } })
@Advice()
export class CrosscutClassAdviceExample implements IAdvice {
}
// 通过正则来指定
@Crosscut({
type: PointcutType.NAME,
className: /crosscut.*/i,
methodName: /hello/,
})
@Advice()
export class CrosscutNameAdviceExample implements IAdvice {
}
// 通过回调来指定
@Crosscut({
type: PointcutType.CUSTOM,
callback: (clazz: EggProtoImplClass, method: PropertyKey) => {
return clazz === CrosscutExample && method === 'hello';
}
})
@Advice()
export class CrosscutCustomAdviceExample implements IAdvice {
}
FAQs
tegg aop plugin
The npm package @eggjs/tegg-aop-plugin receives a total of 863 weekly downloads. As such, @eggjs/tegg-aop-plugin popularity was classified as not popular.
We found that @eggjs/tegg-aop-plugin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 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
Socket CEO Feross Aboukhadijeh shares lessons from scaling a developer security startup to 10,000+ organizations in this founder interview.

Research
Socket Threat Research maps a rare inside look at OtterCookie’s npm-Vercel-GitHub chain, adding 197 malicious packages and evidence of North Korean operators.

Research
Socket researchers identified a malicious Chrome extension that manipulates Raydium swaps to inject an undisclosed SOL transfer, quietly routing fees to an attacker wallet.