Plain route handlers vs. nextjs-nestapi: a side-by-side comparison
Next.js App Router route handlers are just functions — GET, POST, whatever you
export. That's the whole appeal: no framework, no ceremony, straight to the Web
Request/Response APIs. It's also exactly where the pain starts once an API grows past
two or three endpoints. This post builds the same small Post resource twice — once with
plain route handlers, once with nextjs-nestapi — and compares what actually changed.