Skip to content
This repository was archived by the owner on Jan 18, 2022. It is now read-only.
This repository was archived by the owner on Jan 18, 2022. It is now read-only.

Disable re-rendering the DOM for background tabs until they enter the foreground #30

@carcinocron

Description

@carcinocron

My primary goal: save battery life and increase performance for users running Chrome and/or Firefox (or any browser that supports the appropriate APIs).

Recent discussion titled: "Chrome will aggressively throttle background tabs"

https://news.ycombinator.com/item?id=13471543

I run a real time charting platform for Bitcoin traders (like those using BitMEX) and the app does a lot of updating/refreshing. I recently learned of the visibilitychange API and managed to make huge improvements in the app's performance when running in the background - on the order of ~75% reduction in CPU usage when running in the background. [1]
var doVisualUpdates = true;

document.addEventListener('visibilitychange', function(){
doVisualUpdates = !document.hidden;
});
Basically, you can use this to determine if your tab is running "in the background" and avoid redrawing/refreshing components to show updates that won't ever be seen.
[1] https://twitter.com/cryptowat_ch/status/817502626896089090

What does Vue.js do when the tab is in the background (user is looking at another tab, might return in future). Chrome will throttle tabs that don't have active websockets/audio. I do have an active websockets on my application and I expect my average user to be slammed with DOM updates from websockets.

  1. Does Vue.js hold all DOM updates until the user returns to the tab?
  2. Can there be a mixin or other type of plugin for this?
  3. If it needs to be handled outside of Vue.js, how?
  4. What is the browser support for each solution?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions