Skip to content
This repository has been archived by the owner on Jun 9, 2023. It is now read-only.

Latest commit

 

History

History
6 lines (4 loc) · 454 Bytes

README.md

File metadata and controls

6 lines (4 loc) · 454 Bytes

Next.js Handler Guard

Philosophy

  • Next.js is fullstack framework, but it has poor support for api handlers. Next.js doesn't have native guards, filters or validators for http methods, query strings, cookies, and so on... It is very contrast to what Nest.js does.
  • FP paradigm. Nest.js support request lifecycle with decorators on OOP paradigm, but decorator still in experimental stage, so not a few developer have resistance to it.