How can I check the space on disk consumed by a dynamic web app?
I want to know the sum of the size of the CSS files, script files, and images of a dynamic web app.
It’s an online website, so I don’t have access to the root folder to check the size, and in the folder would be files that are not actually sent to the client, because the content is sent as requested using AJAX.
In Chrome you can open the “Developer Tools” window (Wrench > Tools > Developer Tools, or Ctrl+Shift+I) and switch to the “Network” tab. Then on the page you want to check, hold down shift and click refresh to force a fresh load without loading from your cache. After everything is loaded, you should see the total number of requests and the number of bytes transferred.