import { AsyncLocalStorage } from 'async_hooks'; import { Request, Response } from 'express'; export class RequestContext { static cls = new AsyncLocalStorage(); static get currentContext() { return this.cls.getStore(); } constructor(public readonly req: Request, public readonly res: Response) {} }