Skip to content Skip to sidebar Skip to footer

Is There A Way To Know Anything About Hardware Resources Of 'platform' Accessing Webpage?

I'd like to be able to find out about a browser's hardware resources from a web page, or at least a rough estimation. Even when you detect the presence of modern technology (such a

Solution 1:

While Nickolay gave a very good and extensive explanation, I'd like to suggest one very simple, but possibly effective solution - you could try measuring how long it took for the page to load and decide whether to go with the resource-hungry features or not (Gmail does something similar - if the loading goes on for too long, a suggestion to switch to the "basic HTML" version will show up).

The idea is that, for slow computers, loading any page, regardless of content, should be, on average, much slower than on modern computers. Getting the amount of time it took to load your page should be simple, but there are a couple of things to note:

  • You need to experiment a bit to determine where to put the "too slow" threshold.
  • You need to keep in mind that slow connections can cause the page to load slower, but this will probably make a difference in a very small number of cases (using DOM ready instead of the load event can also help here).
  • In addition, the first time a user loads your site will probably be much slower, due to caching. One simple solution for this is to keep your result in a cookie or local storage and only take loading time into account when the user visits for the first time.
  • Don't forget to always, no matter what detection mechanism you used and how accurate it is, allow the user to choose between the regular, resource-hungry and the faster, "uglier" version - some people prefer better looking effects even if it means the website will be slower, while other value speed and snappiness more.

Solution 2:

In general, the available (to web pages) information about the user's system is very limited.

I remember a discussion of adding one such API to the web platform (navigator.hardwareConcurrency - the number of available cores), where the opponents of the feature explained the reasons against it, in particular:

  • The number of cores available to your app depends on other workload, not just on the available hardware. It's not constant, and the user might not be willing to let your app use all (or whatever fixed portion you choose) of the available hardware resources;
  • Helps "fingerprinting" the client.
  • Too oriented on the specifics of today. The web is designed to work on many devices, some of which do not even exist today.

These arguments work as well for other APIs for querying the specific hardware resources. What specifically would you like to check to see if the user's system can afford running a "fancy 3D animation"?

As a user I'd rather you didn't use additional resources (such as fancy 3D animation) if it's not necessary for the core function of your site/app. It's sad really that I have to buy a new laptop every few years just to be able to continue with my current workflow without running very slowly due to lack of HW resources.

That said, here's what you can do:

  • Provide a fallback link for the users who are having trouble with the "full" version of the site.
    • If this is important enough to you, you could first run short benchmarks to check the performance and fall back to the less resource-hungry version of the site if you suspect that a system is short on resources.
  • You could target the specific high-end platforms by checking the OS, screen size, etc.
  • WebGL provides some information about the renderer via webgl.getParameter(). See this page for example: http://analyticalgraphicsinc.github.io/webglreport/

Post a Comment for "Is There A Way To Know Anything About Hardware Resources Of 'platform' Accessing Webpage?"