View:

Do Better Web

We've compiled some recommendations for modernizing your web app and avoiding performance pitfalls.

Using modern offline features

  • Offline: Site is not using Application Cache ?
  • Offline: Site is not using WebSQL DB. ?

Using modern protocols

  • Security: Site is on HTTPS
  • Performance: Site uses HTTP/2 for its own resources ?

Using modern JavaScript features

  • JavaScript: Site does not use Date.now() in its own scripts ?
    Consider using performance.now(), which as better precision than Date.now() and always increases at a constant rate, independent of the system clock.
    URLs
    https://www.chromestatus.com/static/elements/features-imports.vulcanize.js (line: 3, col: 17028)
    https://www.chromestatus.com/static/elements/features-imports.vulcanize.js (line: 6, col: 28985)
  • JavaScript: Site does not use console.time() in its own scripts ?

Avoiding APIs that harm the user experience

  • Performance: Site does not use document.write() ?