Can't close the window with Electron and Socket io Can't close the window with Electron and Socket io express express

Can't close the window with Electron and Socket io


erff resolved in my main.html i had this function, after deleting everything ok !

  /**   * Alert when user leave the page  *   */  window.onbeforeunload = function (event) {    var message = 'Sure you want to leave?';    if (typeof event == 'undefined') {      event = window.event;    }    if (event) {      event.returnValue = message;    }    return message;  }