Skip to content

This issue was moved to a discussion.

You can continue the conversation there. Go to discussion →

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

API routes executing modules more than once #32821

Closed
finallyblueskies opened this issue Dec 26, 2021 · 0 comments
Closed

API routes executing modules more than once #32821

finallyblueskies opened this issue Dec 26, 2021 · 0 comments
Labels
bug Issue was opened via the bug report template.

Comments

@finallyblueskies
Copy link

finallyblueskies commented Dec 26, 2021

What version of Next.js are you using?

12.0.7

What version of Node.js are you using?

16.3.0

What browser are you using?

Any

What operating system are you using?

macOS

How are you deploying your application?

next dev

Describe the Bug

I have two API routes defined in pages/api/item/get.ts and pages/api/item/set.ts. Both of these look very similar, importing an instance of a db:


import db from "../../../helpers/db";

export default function handler(req, res) {
  //
}

The db file sets up an instance of a db connection and exports it. I've added a log to indicate when the module is executed:

// helpers/db.ts

const db = new Db()

console.log("Executing module");

export default db;

What I've found is that "Executing module" is logged once per API call (at first compile? NextJS logs show that API endpoints get compiled)

wait  - compiling /api/item/get...
event - compiled client and server successfully in 103 ms (328 modules)

Expected Behavior

Further repeated calls to either API endpoint do not result in any more logs. IIRC JS modules should only be executed once so this behaviour is unexpected - I should only be getting one log from the helpers/db module unless I am missing something.

To Reproduce

--

@finallyblueskies finallyblueskies added the bug Issue was opened via the bug report template. label Dec 26, 2021
@finallyblueskies finallyblueskies changed the title API routes executing modules twice API routes executing modules more than once Dec 26, 2021
@vercel vercel locked and limited conversation to collaborators Dec 26, 2021
@balazsorban44 balazsorban44 converted this issue into discussion #32822 Dec 26, 2021

This issue was moved to a discussion.

You can continue the conversation there. Go to discussion →

Labels
bug Issue was opened via the bug report template.
Projects
None yet
Development

No branches or pull requests

1 participant