Skip to content

Add support for nodejs 24 stacktraces#1887

Closed
Kevin Green (KevinGreen) wants to merge 2 commits into
mainfrom
node24-stacktrace
Closed

Add support for nodejs 24 stacktraces#1887
Kevin Green (KevinGreen) wants to merge 2 commits into
mainfrom
node24-stacktrace

Conversation

@KevinGreen
Copy link
Copy Markdown

Nodejs 24 pulled in v8 updates that changed how stack traces are reported.

Before:

Error: Something went wrong
    at c (/app/index.js:10:9)
    at b (/app/index.js:6:3)
    at a (/app/index.js:2:3)
    at Object.<anonymous> (/app/index.js:13:1)
    at Module._compile (node:internal/modules/cjs/loader:1256:14)
    at Module._extensions..js (node:internal/modules/cjs/loader:1310:10)
    at Module.load (node:internal/modules/cjs/loader:1119:32)
    at Module._load (node:internal/modules/cjs/loader:960:12)
    at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:81:12)

Node24:

Error: Something went wrong
    at c (file:///app/index.js:10:9)
    at b (file:///app/index.js:6:3)
    at a (file:///app/index.js:2:3)
    at file:///app/index.js:13:1
    at Module._compile (node:internal/modules/cjs/loader:1256:14)
    at Module._extensions..js (node:internal/modules/cjs/loader:1310:10)
    at Module.load (node:internal/modules/cjs/loader:1119:32)
    at Module._load (node:internal/modules/cjs/loader:960:12)
    at executeUserEntryPoint (node:internal/modules/run_main:81:12)

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 7, 2026

This pull request has been automatically marked as stale because it has not had recent activity. It will be closed in 7 days if no further activity occurs. If this PR is still relevant, please leave a comment, push an update, or remove the stale label. Thank you for your contributions!

@github-actions github-actions Bot added the stale label May 7, 2026
@github-actions
Copy link
Copy Markdown
Contributor

This pull request was closed because it has been inactive for 21 days (14 days of inactivity before being marked stale, plus 7 additional days). If this PR is still relevant, please feel free to reopen it. Thank you!

@github-actions github-actions Bot closed this May 14, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant