You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
The first step is to registerAsyncContext inside interceptor (or middleware)
src/async-context.interceptor.ts
import{randomUUID}from'crypto'import{Injectable,NestInterceptor,ExecutionContext,CallHandler}from'@nestjs/common'import{AsyncContext}from'@nestjs-steroids/async-context'import{Observable}from'rxjs'@Injectable()exportclassAsyncContextInterceptorimplementsNestInterceptor{constructor(privatereadonlyac:AsyncContext<string,any>){}intercept(context:ExecutionContext,next:CallHandler):Observable<any>{this.ac.register()// Important to call .register or .registerCallback (good for middleware)this.ac.set('traceId',randomUUID())// Setting default value traceIdreturnnext.handle()}}
The second step is to registerAsyncContextModule and interceptor inside main module
classAsyncContext{// Clear all values from storageclear():void;// Delete value by key from storagedelete(key:K):boolean;// Iterate over storageforEach(callbackfn:(value:V,key:K,map:Map<K,V>)=>void,thisArg?:any):void;// Get value from storage by keyget(key:K):V|undefined;// Check if key exists in storagehas(key:K):boolean;// Set value by key in storageset(key:K,value:V): this;// Get number of keys that stored in storagegetsize:number;// Register context, it's better to use this method inside the interceptorregister():void// Register context for a callback, it's better to use this inside the middlewareregisterCallback<R,TArgsextendsany[]>(callback:(...args:TArgs)=>R, ...args:TArgs):R// Unregister contextunregister():void}
AsyncContextModule
interfaceAsyncContextModuleOptions{// Should register this module as global, default: trueisGlobal?:boolean// In case if you need to provide custom value AsyncLocalStoragealsInstance?:AsyncLocalStorage<any>}classAsyncContextModule{staticforRoot(options?:AsyncContextModuleOptions):DynamicModule}
Migration guide from V1
You need to replaceAsyncHooksModule byAsyncContextModule.forRoot()