electron-prebuilt
, which he used in the electron-quick-start
example, has its own application name (Electron).
To change this, you need to rebuild / package the application and it will use the "name" or "product name" from your .json package.
There is also a method for installing / getting the name of the application, but you need to pack the application to see this change in the main menu:
const electron = require('electron'); const app = electron.app; app.setName('APPNAME');
source share