Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

118
Views
I'm new in Nest JS. I want to serialize custom response

I want to return this object on every response:

class Response<T> {
    success: boolean
    message: string
    data: T
}

but built in serializer can't process it because it waits for object which is under serialization. This is my solution. I created a custom response serializer and inherit built in one and map response. It works excellent for now! Offered me better way please.

export interface PlainLiteralObject {
    [key: string]: any;
}

@Injectable()
export class ResponseSerializerInterceptor extends ClassSerializerInterceptor {

    public intercept(context: ExecutionContext, next: CallHandler<any>): Observable<any> {
        const contextOptions = super.getContextOptions(context);
        const options = {
            ...super.defaultOptions,
            ...contextOptions,
        };

        return next.handle().pipe(map((res: Response<PlainLiteralObject> | Response<Array<PlainLiteralObject>>) => {// data property holds object which is under serialization
            const data = super.serialize(res.data, options);

            res.data = data;
            
            return res;
        }));
    }
}
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!