-
Notifications
You must be signed in to change notification settings - Fork 48.1k
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
Bug: Chrome dev tools memory leak heads up #31929
Comments
https://issues.chromium.org/issues/329541444#comment10 Chrome's developer tools have a memory leak in the "live metrics" view of the new, reworked performance panel. Go into the dev tools' settings, open the experiments tab and you can still kill the "live metrics" experiment by removing the checkmark. (And then hope and pray Google actually fixes it before promoting the thing out of experimental status altogether, and removing the ability to disable it.) |
You are right, looks like it's the reason |
Hello I'm concerned about this and my unfinished code but wat the big fork represents Evan from my point of view is a very deep in trenched issue and I'm not going to let it be for nothing |
TLDR: There is a bug with Chrome dev tools that prevents nodes to be garbage collected ( detached nodes )
I noticed a lot of detached nodes when navigating in my Vite react 18 app.
Thought it was something with react-router, but then tried with tanstack router and there was the same issue.
Later I could reproduce the bug with raw react code. So I spent last few days deep diving into react source code until it lead to pure JavaScript events causing this...
By the end I figured out that it was chrome dev tools causing this, they start tracking on all events that won't allow garbage collection or something like that. And it is relatively new bug.
Tested with chrome 83 and 104. No issues with detached nodes...
Not sure which version of chrome introduced this. But beware memory leak bug reports that could come soon.
Here is the video of the same code with chrome 104 (left) and chrome 131 (right)
memoryleakChrome.mp4
React version: Tested with 16, 18 and 19
Steps To Reproduce
Open codesandbox. There is a button called "open in a new tab", click it.

Open chrome dev tools.
In the video I used performance monitor. But you can track memory leaks however you want in Memory tab.
Each time you click on event button and then on render button it will fail to garbage collect previous nodes.
To make sure that it is chrome dev tools and not react.
Link to code example: https://codesandbox.io/p/sandbox/lingering-bash-lschws
The current behavior
Fails to garbage collect unused nodes
The expected behavior
Should garbage collect
The text was updated successfully, but these errors were encountered: