NestJS는 Express 위에서 작동하며, 같은 req,res 객체를 사용합니다.
많은 Express 개발자들은 NestJS가 과도한 장식과 복잡한 구조로 가득 차 있다고 생각합니다. 하지만 NestJS는 Express를 대체하는 것이 아니라 그 위에서 실행되는 프레임워크입니다. 따라서 같은 req와 res 객체, 미들웨어 모델, Node.js HTTP 동작을 사용합니다.
NestJS runs on top of Express, using the same req, res objects.
Many Express developers view NestJS as an overly complex framework filled with decorators and boilerplate. However, NestJS does not replace Express; it operates on top of it. This means it uses the same req and res objects, middleware model, and Node.js HTTP behavior.