Keep request counts low
Description
Accessing a web page usually retrieves a HTML file from the web server. The HTML may then reference additional resources that the browser has to download. More requests means more energy consumed. As such, reducing the amount of files needed to display a page in the browser also reduces the environmental impact.
Solution
Reduce the amount of files needed and requests made by the loaded JavaScript in order to display the final page.
SCI Impact
SCI = (E * I) + M per R
Software Carbon Intensity Spec
Keeping request counts low will impact SCI as follows:
E
: Reducing the amount of requests reduces the energy needed to display the pageM
: Reducing the amount of requests can also reduce the amount of files and therefore the storage requirements of the web page on the server
Assumptions
Considerations
- Consider setting up request count budgets that are measured when the application is tested via test automation