Is it possible to find out the amount of memory that the web application uses by js while running?
If not, what tools can be used for this? Can this be seen through the developer tools in the browser?
Is it possible to find out the amount of memory that the web application uses by js while running?
If not, what tools can be used for this? Can this be seen through the developer tools in the browser?
In the Developer Tools in Chrome there is a Profiles tab. There are two options - you can take a snapshot of the current memory consumption or start a record of consumption and then see how it changed on the timeline. More information can be found in the documentation .
Source: https://ru.stackoverflow.com/questions/520014/
All Articles