#Class transformer alternatives....

1 messages · Page 1 of 1 (latest)

limber thorn
#

What do you guys use to transform data into suitable response dtos? I used class-transformer classes in nestjs and I want the best ways and alternatives in express-ts app.

fallow flint
#

I personally don't use class-validator or class-transformer, and instead make use of a schema validator like Zod or valibot. But I also don't use an ORM so I don't get class instances back from my database, just objects of the correct shape (or I map it in the service myself)

limber thorn
fallow flint