Ably Realtime whitescreens Electron renderer ~30s after connect
The Ably team root-caused this to a Chromium `setTimeout` bug that triggers when ably-js code is evaluated from a custom vm context in an Electron renderer process. Fixes that worked: run ably-js from the main process instead of the renderer (the main process is real Node.js and unaffected); make su…