Brandon Ros
Brandon Ros
> Thank you! That was incredibly helpful! :) > > It's unfortunate that there isn't support for es6 modules right out of the box, but I think the `vm.SourceTextModule` solution...
Feedback from putting it in my production app: It would be nice to have utility methods like: crosstab.isMaster() and crosstab.isSupported(). It'd be (subjectively) better if `crosstab.on(crosstab['util']['eventTypes']['becomeMaster']` was something more like...
Sorry. I found `crosstab.supported`.
Is this safe to test?
Chrome on Windows 10 should be fine though, no? What changed from 7/8 -> 10 in IE/Edge?
iframes don't get paused?
Ah. I'm using it to prevent 10 tabs opening 10 WebSocket connections when the work can be done with one then broadcasted per-tab. Is this a poor use case?
I really don't understand why calls to `ejs.fileLoader` aren't wrapped in Promise.resolve()?
@AdamPuzio I'm not in love with this, but.. ```javascript const LRU = require('lru-cache') const loadTemplates = require(__dirname + '/loadTemplates.js') const domainRenderers = {} module.exports = async (ctx, templateName, model) =>...
you *can* `require('usb')` from the renderer, you just need init in the non-renderer process to look a little bit like this ``` const electron = require('electron') const createWindow = ()...