So überprüfen Sie, ob wir auf Elektron oder Browser laufen
let isElectron = require("is-electron");
if(isElectron()){
console.log("Electron aww yeahhh !");
}else{
console.log("Running in other platform as a normal browser");
}
Weary Wombat