Is there any benefits of using @nestjs/class-validator package instead of class-validator?

Viewed 28

In NestJS application, right now I am using class-validator to validate DTO and request payload. Is there any benefits if I shift to @nestjs/class-validator?

I found both packages are same.

#edited Later I found @nestjs/class-validator is maintained by nestjs which is especially designed for nestjs projects. And @nestjs/class-validator is more updated/maintained one.

1 Answers
Related