Problem: while developing using Electron, when you try to use any JS plugin that requires jQuery, the plugin doesn\'t find jQuery, even if you load in the correct path using
You can put node-integration: false inside options on BrowserWindow.
node-integration: false
eg: window = new BrowserWindow({'node-integration': false});
window = new BrowserWindow({'node-integration': false});