Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does opening browser developer tools affect application performance?

I would like to know if opening browser developer tools really affect the application performance in any way. It's not about just considering opening the developer tools in the same window, it can be in a new window or the same window.

Also is there any difference in application rendering/performance if developer tool is not opened vs opened state?

like image 855
ABHILASH SB Avatar asked Nov 24 '17 05:11

ABHILASH SB


1 Answers

Opening the developer tools definitely affects performance, and not always in the way you might expect.

In Chrome I very frequently find opening developer tools whilst a page is running slowly, can improve the page's performance. I don't know why that is, but it's a very observable affect.

It will probably be worth instrumenting your page within your own code and logging general performance stats if you're worried about developer tool's influence. You can open the developer tools and read the log after triggering whatever you're measuring.

like image 155
Will S Avatar answered Oct 11 '22 13:10

Will S