app
Контролируйте жизненный цикл Вашего приложения.
Process: Main
Этот пример показывает, как закрыть приложение, когда последнее окно будет закрыто:
const { app } = require('electron')
app.on('window-all-closed', () => {
  app.quit()
})
События
Объект app имеет следующие события:
Событие: 'will-finish-launching'
Происходит, когда приложение заканчивает основной запуск. На Windows и Linux событие will-finish-launching подобно событию ready; на macOS это событие представляет собой уведомление applicationWillFinishLaunching объекта NSApplication.
В большинстве случаев, Вы должны выполнять всё в обработчике события ready.
Событие: 'ready'
Возвращает:
- Событие типа event
- launchInfoRecord<string, any> | NotificationResponse macOS
Происходит единожды при завершении инициализации Electron. В macOS, launchInfo содержит userInfo о NSUserNotification или информацию из UNNotificationResponse которая использовалась для открытия приложения, если оно было запущено из центра уведомлений (Notification Center). Вы также можете вызвать app.isReady() для проверки того, что событие уже произошло и app.whenReady() чтобы получить Promise, который выполнится, когда Electron будет инициализирован.
Note: The ready event is only fired after the main process has finished running the first tick of the event loop. If an Electron API needs to be called before the ready event, ensure that it is called synchronously in the top-level context of the main process.
Событие: 'window-all-closed'
Происходит при закрытии всех окон.
Если Вы не подпишитесь на это событие, и все окна будут закрыты, поведением по умолчанию является выход из приложения; Однако, если Вы подпишитесь, то Вы определяете, будет ли приложение закрыто или нет. Если пользователь нажал Cmd + Q или разработчик вызвал app.quit(), Electron сначала попытается закрыть все окна, а затем происходит событие will-quit, и в этом случае событие window-all-closed не будет происходить.
Событие: 'before-quit'
Возвращает:
- Событие типа event
Происходит до того, как приложение начнет закрывать свои окна. Вызов event.preventDefault() предотвратит поведение по умолчанию, которое приводит к прекращению работы приложения.
Примечание: Если выход приложения был инициирован autoUpdater.quitAndInstall(), тогда before-quit происходит после того, как происходит событие close на всех окнах и закрывает их.
Примечание: На Windows это событие не произойдет, если приложение закрылось из-за выключения/перезагрузки системы или выхода пользователя из системы.
Событие: 'will-quit'
Возвращает:
- Событие типа event
Возникает, когда все окна будут закрыты и приложение завершит работу. Вызов event.preventDefault() предотвратит поведение по умолчанию, которое приводит к прекращению работы приложения.
Смотрите описание события window-all-closed для различий между событиями will-quit и window-all-closed.
Примечание: На Windows это событие не произойдет, если приложение закрылось из-за выключения/перезагрузки системы или выхода пользователя из системы.
Событие: 'quit'
Возвращает:
- Событие типа event
- exitCodeInteger
Происходит при выходе из приложения.
Примечание: На Windows это событие не произойдет, если приложение закрылось из-за выключения/перезагрузки системы или выхода пользователя из системы.
Событие: 'open-file' macOS
Возвращает:
- Событие типа event
- pathstring
Происходит, когда пользователь хочет открыть файл. Событие open-file обычно происходит, когда приложение уже открыто и ОС хочет переиспользовать приложение, чтобы открыть файл. open-file также происходит, когда файл уже находится на Dock панели, но приложение еще не запущено. Убедитесь, что обработчик события open-file в самом начале запуска Вашего приложения обрабатывает этот случай (даже прежде, чем происходит событие  ready).
Вы должны вызвать event.preventDefault(), если хотите обработать это событие.
На Windows Вам необходимо распарсить process.argv (в основном процессе), чтобы получить путь к файлу.
Событие: 'open-url' macOS
Возвращает:
- Событие типа event
- urlstring
Происходит, когда пользователь хочет открыть URL-адрес из приложения. Файл Вашего приложения Info.plist должнен определять схему URL в ключе CFBundleURLTypes и установить NSPrincipalClass в AtomApplication.
As with the open-file event, be sure to register a listener for the open-url event early in your application startup to detect if the application is being opened to handle a URL. If you register the listener in response to a ready event, you'll miss URLs that trigger the launch of your application.
Событие: 'activate' macOS
Возвращает:
- Событие типа event
- hasVisibleWindowsboolean
Происходит при активации приложения. Различные действия могут запускать это событие, например, запуск приложения в первый раз, попытка перезапустить приложение, когда оно уже запущено, или клик на иконку приложения на панели dock или панели задач.
Событие: 'did-become-active' macOS
Возвращает:
- Событие типа event
Emitted when the application becomes active. This differs from the activate event in that did-become-active is emitted every time the app becomes active, not only when Dock icon is clicked or application is re-launched. It is also emitted when a user switches to the app via the macOS App Switcher.
Event: 'did-resign-active' macOS
Возвращает:
- Событие типа event
Emitted when the app is no longer active and doesn’t have focus. This can be triggered, for example, by clicking on another application or by using the macOS App Switcher to switch to another application.
Event: 'continue-activity' macOS
Возвращает:
- Событие типа event
- typestring - A string identifying the activity. Maps to- NSUserActivity.activityType.
- userInfounknown - содержит специфическое для приложения состояние, сохраненное на другом устройстве.
- Объект details- webpageURLstring (optional) - A string identifying the URL of the webpage accessed by the activity on another device, if available.
 
Emitted during Handoff when an activity from a different device wants to be resumed. Если вы хотите обработать это событие следует вызвать event.preventDefault().
Активность пользователя может быть продолжена только в приложении, которое имеет тот же ID команды разработчика, что и исходное приложение, и поддерживает тип активности. Поддерживаемые типы активности, указаны в Info.plist приложения под ключом NSUserActivityTypes.
Event: 'will-continue-activity' macOS
Возвращает:
- Событие типа event
- typestring - A string identifying the activity. Maps to- NSUserActivity.activityType.
Emitted during Handoff before an activity from a different device wants to be resumed. Если вы хотите обработать это событие следует вызвать event.preventDefault().
Event: 'continue-activity-error' macOS
Возвращает:
- Событие типа event
- typestring - A string identifying the activity. Maps to- NSUserActivity.activityType.
- errorstring - A string with the error's localized description.
Emitted during Handoff when an activity from a different device fails to be resumed.
Event: 'activity-was-continued' macOS
Возвращает:
- Событие типа event
- typestring - A string identifying the activity. Maps to- NSUserActivity.activityType.
- userInfounknown - содержит специфичное, для приложения, состояние, сохраненное в хранилище по активности.
Emitted during Handoff after an activity from this device was successfully resumed on another one.
Event: 'update-activity-state' macOS
Возвращает:
- Событие типа event
- typestring - A string identifying the activity. Maps to- NSUserActivity.activityType.
- userInfounknown - содержит специфичное, для приложения, состояние, сохраненное в хранилище по активности.
Emitted when Handoff is about to be resumed on another device. Если Вы хотите обновить состояние, которое будет передано, Вам необходимо вызвать event.preventDefault() немедленно, собрать новый словарь userInfo и вызвать app.updateCurrentActivity() своевременно. Иначе, операция завершится ошибкой и будет вызвано continue-activity-error.
Событие: 'new-window-for-tab' macOS
Возвращает:
- Событие типа event
Возникает при нажатии пользователем кнопки новой вкладки macOS. Кнопка новой вкладки отобразится только если текущий BrowserWindow имеет tabbingIdentifier
Событие: 'browser-window-blur'
Возвращает:
- Событие типа event
- windowBrowserWindow
Emitted when a browserWindow gets blurred.
Событие: 'browser-window-focus'
Возвращает:
- Событие типа event
- windowBrowserWindow
Emitted when a browserWindow gets focused.
Событие: 'browser-window-created'
Возвращает:
- Событие типа event
- windowBrowserWindow
Emitted when a new browserWindow is created.
Событие: 'web-contents-created'
Возвращает:
- Событие типа event
- webContentsWebContents
Emitted when a new webContents is created.
Событие: 'certificate-error'
Возвращает:
- Событие типа event
- webContentsWebContents
- urlstring
- errorstring - The error code
- certificateCertificate
- callbackFunction- isTrustedboolean - Whether to consider the certificate as trusted
 
- isMainFrameboolean
Возникает, когда не удалось проверить certificate для url, чтобы доверять сертификату, вы должны предотвратить поведение по умолчанию с event.preventDefault() и вызвать callback(true).
const { app } = require('electron')
app.on('certificate-error', (event, webContents, url, error, certificate, callback) => {
  if (url === 'https://github.com') {
    // Сверка логики.
    event.preventDefault()
    callback(true)
  } else {
    callback(false)
  }
})
Событие: 'select-client-certificate'
Возвращает:
- Событие типа event
- webContentsWebContents
- urlURL
- certificateListCertificate[]
- callbackFunction- certificateCertificate (optional)
 
Возникает при запросе сертификата клиента.
url соответствует записи навигации, запрашивающей сертификат клиента и callback можно вызвать с записью, отфильтрованной из списка. event.preventDefault() предотвращает приложению использование первого сертификата из хранилища.
const { app } = require('electron')
app.on('select-client-certificate', (event, webContents, url, list, callback) => {
  event.preventDefault()
  callback(list[0])
})
Событие: 'login'
Возвращает:
- Событие типа event
- webContentsWebContents (optional)
- authenticationResponseDetailsObject- urlURL
- pidnumber
 
- authInfoObject- isProxyboolean
- schemestring
- hoststring
- portInteger
- realmstring
 
- callbackFunction- usernamestring (optional)
- passwordstring (optional)
 
Emitted when webContents or Utility process wants to do basic auth.
Поведение по умолчанию - отмена всех аутентификаций. Чтобы переопределить это, Вы должны предотвратить поведение по умолчанию с помощью event.preventDefault() и вызвать callback(username, password) с учетными данными.
const { app } = require('electron')
app.on('login', (event, webContents, details, authInfo, callback) => {
  event.preventDefault()
  callback('username', 'secret')
})
Если  calllback вызывается без имени пользователя или пароля, запрос аутентификации будет отменен и ошибка аутентификации будет возвращена на страницу.
Событие: 'gpu-info-update'
Выдается при каждом обновлении информации о GPU.
Event: 'render-process-gone'
Возвращает:
- Событие типа event
- webContentsWebContents
- detailsRenderProcessGoneDetails
Emitted when the renderer process unexpectedly disappears. This is normally because it was crashed or killed.
Событие 'child-process-gone'
Возвращает:
- Событие типа event
- Объект details- typestring - Тип процесса. Одно из следующих значений:- Utility
- Zygote
- Sandbox helper
- GPU
- Pepper Plugin
- Pepper Plugin Broker
- Unknown
 
- reasonstring - Причина исчезновения дочернего процесса. Возможные значения:- clean-exit- Process exited with an exit code of zero
- abnormal-exit- Process exited with a non-zero exit code
- killed- Process was sent a SIGTERM or otherwise killed externally
- crashed- Process crashed
- oom- Process ran out of memory
- launch-failed- Process never successfully launched
- integrity-failure- Windows code integrity checks failed
 
- exitCodenumber - The exit code for the process (e.g. status from waitpid if on POSIX, from GetExitCodeProcess on Windows).
- serviceNamestring (optional) - The non-localized name of the process.
- namestring (опционально) - Название процесса. Например:- Audio Service,- Content Decryption Module Service,- Network Service,- Video Captureи т.д.
 
Emitted when the child process unexpectedly disappears. This is normally because it was crashed or killed. It does not include renderer processes.
Событие: 'accessibility-support-changed' macOS Windows
Возвращает:
- Событие типа event
- accessibilitySupportEnabledboolean -- trueкогда доступность поддержки Chrome включена,- falseв противном случае.
Возникает при изменении Chrome поддержки специальных возможностей. Это событие срабатывает, когда вспомогательные технологии, такие как устройства чтения с экрана, включены или отключены. Смотрите https://www.chromium.org/developers/design-documents/accessibility для подробностей.
Событие: 'session-created'
Возвращает:
- sessionSession
Происходит, когда Electron создал новый объект session.
const { app } = require('electron')
app.on('session-created', (session) => {
  console.log(session)
})
Событие: 'second-instance'
Возвращает:
- Событие типа event
- argvstring [] - массив аргументов командной строки вторичных экземпляров
- workingDirectorystring - рабочий каталог вторичных экземпляров
- additionalDataunknown - A JSON object of additional data passed from the second instance
Это событие произойдет внутри главного экземпляра Вашего приложения, когда второй экземпляр был запущен и вызывает app.requestSingleInstanceLock().
argv это массив аргументов командной строки второго экземпляра, а workingDirectory это текущий рабочий каталог. Обычно приложения реагируют на это, делая их основное окно сфокусированным и не свернутым.
Note: argv will not be exactly the same list of arguments as those passed to the second instance. The order might change and additional arguments might be appended. If you need to maintain the exact same arguments, it's advised to use additionalData instead.
Примечание: Если второй экземпляр запускается другим пользователем, массив argv не будет содержать аргументы.
Это событие гарантировано происходит после события ready в app.
Примечание: Дополнительные аргументы командной строки могут быть добавлены Chromium, такие как --original-process-start-time.
Методы
Объект app имеет следующие методы:
Примечание: Некоторые методы доступны только в определенных операционных системах и помечены как таковые.
app.quit()
Попытка закрыть все окна. Сначала возникнет событие before-quit. Если все окна успешно закрыты, событие will-quit возникнет и по умолчанию приложение будет завершено.
Этот метод гарантирует, что все обработчики событий beforeunload и unload выполнятся корректно. Вполне возможно, что окно отменит выход, возвращая false в обработчике событий beforeunload.
app.exit([exitCode])
- exitCodeInteger (опиционально)
Немедленный выход с помощью exitCode. exitCode по умолчанию 0.
Все окна будут закрыты немедленно, без разрешения пользователя, а также события before-quit и will-quit не будут происходить.
app.relaunch([options])
Relaunches the app when the current instance exits.
By default, the new instance will use the same working directory and command line arguments as the current instance. When args is specified, the args will be passed as the command line arguments instead. When execPath is specified, the execPath will be executed for the relaunch instead of the current app.
Note that this method does not quit the app when executed. You have to call app.quit or app.exit after calling app.relaunch to make the app restart.
When app.relaunch is called multiple times, multiple instances will be started after the current instance exits.
An example of restarting the current instance immediately and adding a new command line argument to the new instance:
const { app } = require('electron')
app.relaunch({ args: process.argv.slice(1).concat(['--relaunch']) })
app.exit(0)
app.isReady()
Возвращает boolean - true, если Electron завершил инициализацию, false в противном случае. См. также app.whenReady().
app.whenReady()
Возвращает Promise<void> - выполняется, когда Electron инициализирован. Может быть использован в качестве удобной альтернативы проверки app.isReady() и подписывания на событие ready, если приложение еще не готово.
app.focus([options])
On Linux, focuses on the first visible window. On macOS, makes the application the active app. On Windows, focuses on the application's first window.
You should seek to use the steal option as sparingly as possible.
app.hide() macOS
Скрывает все окна приложения, не минимизируя их.
app.isHidden() macOS
Returns boolean - true if the application—including all of its windows—is hidden (e.g. with Command-H), false otherwise.
app.show() macOS
Показывает окна приложения после того, как они были скрыты. Автоматической фокусировки на них не происходит.
app.setAppLogsPath([path])
- pathstring (опционально) - пользовательский путь для Ваших логов. Должен быть абсолютным.
Устанавливает или создает каталог логов Вашего приложения, которые затем могут быть обработаны с помощью app.getPath() или app.setPath(pathName, newPath).
Вызов app.setAppLogsPath() без параметра path приведет к тому, что этот каталог будет установлен на ~/Library/Logs/YourAppName на macOS, и внутри директории userData на Linux и Windows.
app.getAppPath()
Возвращает string - текущего каталога приложения.
app.getPath(name)
- namestring - You can request the following paths by the name:- homeдомашний каталог пользователя.
- appDataPer-user application data directory, which by default points to:- %APPDATA%на Windows
- $XDG_CONFIG_HOMEили- ~/.configна Linux
- ~/Library/Application Supportна macOS
 
- userDataThe directory for storing your app's configuration files, which by default is the- appDatadirectory appended with your app's name. By convention files storing user data should be written to this directory, and it is not recommended to write large files here because some environments may backup this directory to cloud storage.
- sessionDataThe directory for storing data generated by- Session, such as localStorage, cookies, disk cache, downloaded dictionaries, network state, devtools files. By default this points to- userData. Chromium may write very large disk cache here, so if your app does not rely on browser storage like localStorage or cookies to save user data, it is recommended to set this directory to other locations to avoid polluting the- userDatadirectory.
- tempвременный каталог.
- exeтекущий исполняемый файл.
- moduleбиблиотека- libchromiumcontent.
- desktopкаталог рабочего стола, текущего пользователя.
- documentsкаталог пользователя для документов.
- downloadsКаталог пользователя "Downloads".
- musicкаталог пользователя "Music".
- picturesкаталог пользователя для фотографии.
- videosкаталог пользователя для видео.
- recentDirectory for the user's recent files (Windows only).
- logsкаталог для логов Вашего приложения.
- crashDumpsDirectory where crash dumps are stored.
 
Returns string - A path to a special directory or file associated with name. On failure, an Error is thrown.
Если app.getPath('logs') вызывается без имени app.setAppLogsPath(), то сначала создается каталог журнала по умолчанию, эквивалентный вызову app.setAppLogsPath() без параметра path.
app.getFileIcon(path[, options])
- pathstring
Returns Promise<NativeImage> - fulfilled with the app's icon, which is a NativeImage.
Извлекает значок, ассоциируемый с путем.
На Windows, там 2 вида значков:
- Значки, связанные с определенными расширениями, как .mp3,.png, и т.д.
- Значки внутри файла, таких как .exe,.dll,.ico.
На Linux и macOS иконки зависят от приложения, ассоциируемого с mime-типом файла.
app.setPath(name, path)
- namestring
- pathstring
Переопределяет path в специальный каталог или файл, связанный с name. Если путь задает каталог, который не существует, то при вызове выбросится Error. В этом случае каталог должен быть создан с помощью fs.mkdirSync или аналогичным способом.
Можно переопределять только пути name, определенное в app.getPath.
По умолчанию cookies и кэш веб-страницы будут храниться в каталоге sessionData. Если Вы хотите изменить это расположение, Вам необходимо переопределить путь sessionData прежде, чем событие ready модуля app возникнет.
app.getVersion()
Возвращает string - версии загруженного приложения. Если версия не найдена в файле package.json приложения, возвращается версия текущего пакета или исполняемого файла.
app.getName()
Возвращает string - имя текущего приложения, который является именем в файле приложения package.json.
Обычно поле name в package.json является коротким именем, написанном в нижнем регистре, согласно спецификации модулей npm. Обычно Вы должны также указать поле productName, которое пишется заглавными буквами - имя вашего приложения, и которое будет предпочтительнее name для Electron.
app.setName(name)
- namestring
Переопределяет имя текущего приложения.
Примечание: Эта функция перекрывает имя, используемое внутри Electron; это не влияет на имя, которое использует ОС.
app.getLocale()
Returns string - The current application locale, fetched using Chromium's l10n_util library. Possible return values are documented here.
To set the locale, you'll want to use a command line switch at app startup, which may be found here.
Примечание: При распространении упакованного приложения, нужно также добавить папку locales.
Note: This API must be called after the ready event is emitted.
Note: To see example return values of this API compared to other locale and language APIs, see app.getPreferredSystemLanguages().
app.getLocaleCountryCode()
Returns string - User operating system's locale two-letter ISO 3166 country code. The value is taken from native OS APIs.
Примечание: Когда невозможно определить код страны языка, возвращает пустую строку.
app.getSystemLocale()
Returns string - The current system locale. On Windows and Linux, it is fetched using Chromium's i18n library. On macOS, [NSLocale currentLocale] is used instead. To get the user's current system language, which is not always the same as the locale, it is better to use app.getPreferredSystemLanguages().
Different operating systems also use the regional data differently:
- Windows 11 uses the regional format for numbers, dates, and times.
- macOS Monterey uses the region for formatting numbers, dates, times, and for selecting the currency symbol to use.
Therefore, this API can be used for purposes such as choosing a format for rendering dates and times in a calendar app, especially when the developer wants the format to be consistent with the OS.
Note: This API must be called after the ready event is emitted.
Note: To see example return values of this API compared to other locale and language APIs, see app.getPreferredSystemLanguages().
app.getPreferredSystemLanguages()
Returns string[] - The user's preferred system languages from most preferred to least preferred, including the country codes if applicable. A user can modify and add to this list on Windows or macOS through the Language and Region settings.
The API uses GlobalizationPreferences (with a fallback to GetSystemPreferredUILanguages) on Windows, \[NSLocale preferredLanguages\] on macOS, and g_get_language_names on Linux.
This API can be used for purposes such as deciding what language to present the application in.
Here are some examples of return values of the various language and locale APIs with different configurations:
On Windows, given application locale is German, the regional format is Finnish (Finland), and the preferred system languages from most to least preferred are French (Canada), English (US), Simplified Chinese (China), Finnish, and Spanish (Latin America):
app.getLocale() // 'de'
app.getSystemLocale() // 'fi-FI'
app.getPreferredSystemLanguages() // ['fr-CA', 'en-US', 'zh-Hans-CN', 'fi', 'es-419']
On macOS, given the application locale is German, the region is Finland, and the preferred system languages from most to least preferred are French (Canada), English (US), Simplified Chinese, and Spanish (Latin America):
app.getLocale() // 'de'
app.getSystemLocale() // 'fr-FI'
app.getPreferredSystemLanguages() // ['fr-CA', 'en-US', 'zh-Hans-FI', 'es-419']
Both the available languages and regions and the possible return values differ between the two operating systems.
As can be seen with the example above, on Windows, it is possible that a preferred system language has no country code, and that one of the preferred system languages corresponds with the language used for the regional format. On macOS, the region serves more as a default country code: the user doesn't need to have Finnish as a preferred language to use Finland as the region,and the country code FI is used as the country code for preferred system languages that do not have associated countries in the language name.
app.addRecentDocument(path) macOS Windows
- pathstring
Добавляет path к списку последних документов.
This list is managed by the OS. On Windows, you can visit the list from the task bar, and on macOS, you can visit it from dock menu.
app.clearRecentDocuments() macOS Windows
Очищает список последних документов.
app.setAsDefaultProtocolClient(protocol[, path, args])
- protocolstring - имя вашего протокола, без- ://. For example, if you want your app to handle- electron://links, call this method with- electronas the parameter.
- pathstring (optional) Windows - The path to the Electron executable. По умолчанию- process.execPath
- argsstring[] (optional) Windows - Arguments passed to the executable. По умолчанию пустой массив
Возвращает boolean - успешный ли вызов.
Sets the current executable as the default handler for a protocol (aka URI scheme). It allows you to integrate your app deeper into the operating system. Once registered, all links with your-protocol:// will be opened with the current executable. The whole link, including protocol, will be passed to your application as a parameter.
Note: On macOS, you can only register protocols that have been added to your app's info.plist, which cannot be modified at runtime. However, you can change the file during build time via Electron Forge, Electron Packager, or by editing info.plist with a text editor. За подробными сведениями обращайтесь к документации компании Apple.
Примечание: В окружении Windows Store (когда упаковано как appx) этот метод вернет true для всех вызовов, но ключ реестра, который он устанавливает, не будет доступен другим приложениям.  Чтобы зарегистрировать Ваше приложения в Windows Store как обработчик протокола по умолчанию, Вы должны объявить протокол в Вашем манифесте.
The API uses the Windows Registry and LSSetDefaultHandlerForURLScheme internally.
app.removeAsDefaultProtocolClient(protocol[, path, args]) macOS Windows
- protocolstring - имя вашего протокола, без- ://.
- pathstring (optional) Windows - по умолчанию- process.execPath
- argsstring[] (optional) Windows - по умолчанию пустой массив
Возвращает boolean - успешный ли вызов.
This method checks if the current executable as the default handler for a protocol (aka URI scheme). If so, it will remove the app as the default handler.
app.isDefaultProtocolClient(protocol[, path, args])
- protocolstring - имя вашего протокола, без- ://.
- pathstring (optional) Windows - по умолчанию- process.execPath
- argsstring[] (optional) Windows - по умолчанию пустой массив
Returns boolean - Whether the current executable is the default handler for a protocol (aka URI scheme).
Примечание: На macOS можно использовать этот метод для проверки, если приложение было зарегистрировано в качестве обработчика протокола по умолчанию для протокола. Вы также можете проверить это, установив ~/Library/Preferences/com.apple.LaunchServices.plist на машине macOS. За подробными сведениями обращайтесь к документации компании Apple.
The API uses the Windows Registry and LSCopyDefaultHandlerForURLScheme internally.
app.getApplicationNameForProtocol(url)
- urlstring - a URL with the protocol name to check. Unlike the other methods in this family, this accepts an entire URL, including- ://at a minimum (e.g.- https://).
Returns string - Name of the application handling the protocol, or an empty string if there is no handler. For instance, if Electron is the default handler of the URL, this could be Electron on Windows and Mac. However, don't rely on the precise format which is not guaranteed to remain unchanged. Expect a different format on Linux, possibly with a .desktop suffix.
This method returns the application name of the default handler for the protocol (aka URI scheme) of a URL.
app.getApplicationInfoForProtocol(url) macOS Windows
- urlstring - a URL with the protocol name to check. Unlike the other methods in this family, this accepts an entire URL, including- ://at a minimum (e.g.- https://).
Возвращает Promise<Object> - Разрешить с объектом, содержащим следующее:
- iconNativeImage - the display icon of the app handling the protocol.
- pathstring - installation path of the app handling the protocol.
- namestring - display name of the app handling the protocol.
This method returns a promise that contains the application name, icon and path of the default handler for the protocol (aka URI scheme) of a URL.
app.setUserTasks(tasks) Windows
- tasksTask[] - Array of- Taskobjects
Добавляет tasks к категории Tasks в JumpList на Windows.
tasks is an array of Task objects.
Возвращает boolean - успешный ли вызов.
Примечание: Если вы хотите настроить Jump List еще больше используйте app.setJumpList(categories).
app.getJumpListSettings() Windows
Возвращает Object:
- minItemsInteger - минимальное количество элементов, которые будут показаны в Jump List (для более подробного описания этого значение см. документация MSDN).
- removedItemsJumpListItem[] - Array of- JumpListItemobjects that correspond to items that the user has explicitly removed from custom categories in the Jump List. Эти элементы не должны быть снова добавлены в список переходов, при следующем вызове- app.setJumpList(), Windows не будет отображать любую пользовательскую категорию, содержащую любой из удаленных пунктов.
app.setJumpList(categories) Windows
- categoriesJumpListCategory[] |- null- Array of- JumpListCategoryobjects.
Возвращает string
Задает или удаляет настраиваемый Jump List для приложения и возвращает одну из следующих строк:
- ok- ничего не случилось.
- error- произошла одна или несколько ошибок, включите ведение журнала выполнения, чтобы выяснить возможную ошибку.
- invalidSeparatorError- An attempt was made to add a separator to a custom category in the Jump List. Separators are only allowed in the standard- Taskscategory.
- fileTypeRegistrationError- была сделана попытка добавить ссылку на файл в Jump List для типа файла, который в приложении не зарегистрирован для обработки.
- customCategoryAccessDeniedError- настраиваемые категории не могут быть добавлены в Jump List из-за ограничений конфиденциальности пользователей или групповой политики.
Если categories - null, то ранее установленный пользовательский список переходов (если таковой имеется) будет заменён стандартным списком переходов для приложения (управляется Windows).
Примечание: Если объект JumpListCategory не имеет ни type, ни name свойства, тогда type считается как tasks. Если свойство name установлено, но свойство type опущено, тогда type считается custom.
Примечание: Пользователи могут удалять элементы из настраиваемых категорий, но Windows не будет позволять возвращать удаленный элемент в настраиваемую категорию до последующего удачного вызова app.setJumpList(categories). Любая попытка вновь добавить удаленный элемент в настраиваемую категорию раньше, чем это приведёт к созданию всей настраиваемой категории, исключается из Jump List. Список удаленных элементов можно получить с помощью app.getJumpListSetting().
Note: The maximum length of a Jump List item's description property is 260 characters. Beyond this limit, the item will not be added to the Jump List, nor will it be displayed.
Вот очень простой способ, как создать настраиваемый Jump List:
const { app } = require('electron')
app.setJumpList([
  {
    type: 'custom',
    name: 'Recent Projects',
    items: [
      { type: 'file', path: 'C:\\Projects\\project1.proj' },
      { type: 'file', path: 'C:\\Projects\\project2.proj' }
    ]
  },
  { // has a name so `type` is assumed to be "custom"
    name: 'Tools',
    items: [
      {
        type: 'task',
        title: 'Tool A',
        program: process.execPath,
        args: '--run-tool-a',
        iconPath: process.execPath,
        iconIndex: 0,
        description: 'Runs Tool A'
      },
      {
        type: 'task',
        title: 'Tool B',
        program: process.execPath,
        args: '--run-tool-b',
        iconPath: process.execPath,
        iconIndex: 0,
        description: 'Runs Tool B'
      }
    ]
  },
  { type: 'frequent' },
  { // has no name and no type so `type` is assumed to be "tasks"
    items: [
      {
        type: 'task',
        title: 'New Project',
        program: process.execPath,
        args: '--new-project',
        description: 'Create a new project.'
      },
      { type: 'separator' },
      {
        type: 'task',
        title: 'Recover Project',
        program: process.execPath,
        args: '--recover-project',
        description: 'Recover Project'
      }
    ]
  }
])
app.requestSingleInstanceLock([additionalData])
- additionalDataRecord<any, any> (optional) - A JSON object containing additional data to send to the first instance.
Возвращает boolean
Значение, которое возвращает этот метод, указывает, успешно или нет экземпляр Вашего приложения получило блокировку. Если не удалось получить блокировку, можно предположить, что другой экземпляр Вашего приложения уже запущен с блокировкой и немедленно завершается.
I.e. This method returns true if your process is the primary instance of your application and your app should continue loading.  Возвращает false, если Ваш процесс должен немедленно завершиться, так как он отправил свои параметры другому экземпляру, который уже приобрел блокировку.
На macOS система автоматически обеспечивает единственный экземпляр, когда пользователи пытаются открыть второй экземпляра Вашего приложения в Finder, для этого будут происходить события open-file и open-url. Так или иначе, когда пользователи запустят Ваше приложение через командную строку, системный механизм единственного экземпляра будет пропущен, и Вы должны использовать этот метод, чтобы обеспечить единственный экземпляр.
Пример активации окна первичного экземпляра, при запуске второго экземпляра:
const { app, BrowserWindow } = require('electron')
let myWindow = null
const additionalData = { myKey: 'myValue' }
const gotTheLock = app.requestSingleInstanceLock(additionalData)
if (!gotTheLock) {
  app.quit()
} else {
  app.on('second-instance', (event, commandLine, workingDirectory, additionalData) => {
    // Print out data received from the second instance.
    console.log(additionalData)
    // Someone tried to run a second instance, we should focus our window.
    if (myWindow) {
      if (myWindow.isMinimized()) myWindow.restore()
      myWindow.focus()
    }
  })
  app.whenReady().then(() => {
    myWindow = new BrowserWindow({})
    myWindow.loadURL('https://electronjs.org')
  })
}
app.hasSingleInstanceLock()
Возвращает boolean
Этот метод возвращает состояние, является или нет экземпляр Вашего приложения, в данный момент, удерживающим блокировку единственного экземпляра.  Вы можете запросить блокировку с помощью app.requestSingleInstanceLock() и освободить с помощью app.releaseSingleInstanceLock()
app.releaseSingleInstanceLock()
Releases all locks that were created by requestSingleInstanceLock. This will allow multiple instances of the application to once again run side by side.
app.setUserActivity(type, userInfo[, webpageURL]) macOS
- typestring - уникально идентифицирует действие. Maps to- NSUserActivity.activityType.
- userInfoany- специфичное, для приложения, состояние для использования другими устройствами.
- webpageURLstring (optional) - The webpage to load in a browser if no suitable app is installed on the resuming device. The scheme must be- httpor- https.
Создает NSUserActivity и задает её в качестве текущей активности. Активность позже имеет право для Handoff на другом устройстве.
app.getCurrentActivityType() macOS
Возвращает string - тип текущей выполняемой активности.
app.invalidateCurrentActivity() macOS
Аннулирует текущую Handoff активность пользователя.
app.resignCurrentActivity() macOS
Помечает текущую Handoff активность пользователя как неактивную без ее отмены.
app.updateCurrentActivity(type, userInfo) macOS
- typestring - уникально идентифицирует действие. Maps to- NSUserActivity.activityType.
- userInfoany- специфичное, для приложения, состояние для использования другими устройствами.
Обновляет текущую активность, если его тип совпадает с type, объединяет записи из userInfo в его текущем словаре userInfo.
app.setAppUserModelId(id) Windows
- idstring
Изменяет Application User Model ID на id.
app.setActivationPolicy(policy) macOS
- policystring - Can be 'regular', 'accessory', or 'prohibited'.
Sets the activation policy for a given app.
Activation policy types:
- 'regular' - The application is an ordinary app that appears in the Dock and may have a user interface.
- 'accessory' - The application doesn’t appear in the Dock and doesn’t have a menu bar, but it may be activated programmatically or by clicking on one of its windows.
- 'prohibited' - The application doesn’t appear in the Dock and may not create windows or be activated.
app.importCertificate(options, callback) Linux
- callbackFunction- resultInteger - результат импорта.
 
Импорт сертификата в формате pkcs12 из платформы хранилища сертификатов. callback вызывается с result - результат операции импорта, значение 0 указывает на успех, все другие значения указывают на ошибку в соответствии со списком net_error_list в Chromium.
app.configureHostResolver(options)
Configures host resolution (DNS and DNS-over-HTTPS). By default, the following resolvers will be used, in order:
- DNS-over-HTTPS, if the DNS provider supports it, then
- the built-in resolver (enabled on macOS only by default), then
- the system's resolver (e.g. getaddrinfo).
This can be configured to either restrict usage of non-encrypted DNS (secureDnsMode: "secure"), or disable DNS-over-HTTPS (secureDnsMode: "off"). It is also possible to enable or disable the built-in resolver.
To disable insecure DNS, you can specify a secureDnsMode of "secure". If you do so, you should make sure to provide a list of DNS-over-HTTPS servers to use, in case the user's DNS configuration does not include a provider that supports DoH.
const { app } = require('electron')
app.whenReady().then(() => {
  app.configureHostResolver({
    secureDnsMode: 'secure',
    secureDnsServers: [
      'https://cloudflare-dns.com/dns-query'
    ]
  })
})
Этот метод должен вызываться после того, как произошло событие ready.
app.disableHardwareAcceleration()
Отключает аппаратное ускорение для текущего приложения.
Этот метод может быть вызван только до того, как приложение будет готово.
app.disableDomainBlockingFor3DAPIs()
By default, Chromium disables 3D APIs (e.g. WebGL) until restart on a per domain basis if the GPU processes crashes too frequently. This function disables that behavior.
Этот метод может быть вызван только до того, как приложение будет готово.
app.getAppMetrics()
Returns ProcessMetric[]: Array of ProcessMetric objects that correspond to memory and CPU usage statistics of all the processes associated with the app.
app.getGPUFeatureStatus()
Returns GPUFeatureStatus - The Graphics Feature Status from chrome://gpu/.
Примечание: Эта информация может использоваться только после возникновения события gpu-info-update.
app.getGPUInfo(infoType)
- infoTypestring - Может быть- basicили- complete.
Возвращает Promise<unknown>
Для infoType равным complete: Промис выполняется с объектом, содержащий всю GPU информацию как в объекте GPUInfo в chromium. Это включает информацию о версии и драйвере, показанную на странице chrome://gpu.
Для infoType равным basic: Промис выполняется с объектом, содержащий меньшее количество атрибутов, чем когда запрашивается с complete. Вот пример базового ответа:
{
  auxAttributes:
   {
     amdSwitchable: true,
     canSupportThreadedTextureMailbox: false,
     directComposition: false,
     directRendering: true,
     glResetNotificationStrategy: 0,
     inProcessGpu: true,
     initializationTime: 0,
     jpegDecodeAcceleratorSupported: false,
     optimus: false,
     passthroughCmdDecoder: false,
     sandboxed: false,
     softwareRendering: false,
     supportsOverlays: false,
     videoDecodeAcceleratorFlags: 0
   },
  gpuDevice:
   [{ active: true, deviceId: 26657, vendorId: 4098 },
     { active: false, deviceId: 3366, vendorId: 32902 }],
  machineModelName: 'MacBookPro',
  machineModelVersion: '11.5'
}
Использование basics должно быть предпочтительным, если требуется только основная информация, такая как vendorId или deviceId.
app.setBadgeCount([count]) Linux macOS
- countInteger (optional) - If a value is provided, set the badge to the provided value otherwise, on macOS, display a plain white dot (e.g. unknown number of notifications). On Linux, if a value is not provided the badge will not display.
Возвращает boolean - успешный ли вызов.
Sets the counter badge for current app. Setting the count to 0 will hide the badge.
На macOS отображается на иконке в Dock. На Linux работает только для лаунчера Unity.
Примечание: для работы Unity лаунчера требуется файл .desktop. Дополнительную информациюможно прочесть в Документации по интеграции Юнити.
Note: On macOS, you need to ensure that your application has the permission to display notifications for this method to work.
app.getBadgeCount() Linux macOS
Возвращает Integer - текущее значение, отображаемое в значке счётчика.
app.isUnityRunning() Linux
Возвращает boolean - является ли текущее окружение рабочего стола Unity.
app.getLoginItemSettings([options]) macOS Windows
Если Вы предоставили параметры path и args в app.setLoginItemSettings, тогда Вам необходимо передать те же аргументы сюда, чтобы openAtLogin установилось корректно.
Возвращает Object:
- openAtLoginboolean -- trueесли приложение планируется открыть при входе в систему.
- openAsHiddenboolean macOS Deprecated -- trueif the app is set to open as hidden at login. This does not work on macOS 13 and up.
- wasOpenedAtLoginboolean macOS -- trueif the app was opened at login automatically.
- wasOpenedAsHiddenboolean macOS Deprecated -- trueif the app was opened as a hidden login item. Это означает, что приложению не следует открывать любое окно при запуске. This setting is not available on MAS builds or on macOS 13 and up.
- restoreStateboolean macOS Deprecated -- trueif the app was opened as a login item that should restore the state from the previous session. This indicates that the app should restore the windows that were open the last time the app was closed. This setting is not available on MAS builds or on macOS 13 and up.
- statusstring macOS - can be one of- not-registered,- enabled,- requires-approval, or- not-found.
- executableWillLaunchAtLoginboolean Windows -- trueif app is set to open at login and its run key is not deactivated. This differs from- openAtLoginas it ignores the- argsoption, this property will be true if the given executable would be launched at login with any arguments.
- launchItemsObject[] Windows- namestring Windows - name value of a registry entry.
- pathstring Windows - The executable to an app that corresponds to a registry entry.
- argsstring[] Windows - the command-line arguments to pass to the executable.
- scopestring Windows - one of- useror- machine. Indicates whether the registry entry is under- HKEY_CURRENT USERor- HKEY_LOCAL_MACHINE.
- enabledboolean Windows -- trueif the app registry key is startup approved and therefore shows as- enabledin Task Manager and Windows settings.
 
app.setLoginItemSettings(settings) macOS Windows
- Объект settings- openAtLoginboolean (optional) -- trueto open the app at login,- falseto remove the app as a login item. По умолчанию- false.
- openAsHiddenboolean (optional) macOS Deprecated -- trueto open the app as hidden. По умолчанию- false. The user can edit this setting from the System Preferences so- app.getLoginItemSettings().wasOpenedAsHiddenshould be checked when the app is opened to know the current value. This setting is not available on MAS builds or on macOS 13 and up.
- typestring (optional) macOS - The type of service to add as a login item. По умолчанию- mainAppService. Only available on macOS 13 and up.- mainAppService- The primary application.
- agentService- The property list name for a launch agent. The property list name must correspond to a property list in the app’s- Contents/Library/LaunchAgentsdirectory.
- daemonServicestring (optional) macOS - The property list name for a launch agent. The property list name must correspond to a property list in the app’s- Contents/Library/LaunchDaemonsdirectory.
- loginItemServicestring (optional) macOS - The property list name for a login item service. The property list name must correspond to a property list in the app’s- Contents/Library/LoginItemsdirectory.
 
- serviceNamestring (optional) macOS - The name of the service. Required if- typeis non-default. Only available on macOS 13 and up.
- pathstring (optional) Windows - The executable to launch at login. По умолчанию- process.execPath.
- argsstring[] (optional) Windows - The command-line arguments to pass to the executable. По умолчанию пустой массив. Take care to wrap paths in quotes.
- enabledboolean (optional) Windows -- truewill change the startup approved registry key and- enable / disablethe App in Task Manager and Windows Settings. По умолчанию- true.
- namestring (optional) Windows - value name to write into registry. Defaults to the app's AppUserModelId().
 
Установите приложению параметры при входе в систему.
Для работы с Electron autoUpdater на Windows, который использует Squirrel, вы можете задать путь запуска Update.exe и передавать аргументы, которые указывают на имя приложения. Например:
const { app } = require('electron')
const path = require('node:path')
const appFolder = path.dirname(process.execPath)
const updateExe = path.resolve(appFolder, '..', 'Update.exe')
const exeName = path.basename(process.execPath)
app.setLoginItemSettings({
  openAtLogin: true,
  path: updateExe,
  args: [
    '--processStart', `"${exeName}"`,
    '--process-start-args', '"--hidden"'
  ]
})
For more information about setting different services as login items on macOS 13 and up, see SMAppService.
app.isAccessibilitySupportEnabled() macOS Windows
Возвращает boolean - true если включена поддержка специальных возможностей Chrome, и false в противном случае. Этот API будет возвращать true, если обнаружено использование вспомогательных технологий, таких как средства чтения с экрана. Смотрите https://www.chromium.org/developers/design-documents/accessibility для подробностей.
app.setAccessibilitySupportEnabled(enabled) macOS Windows
- enabledboolean - включить или отключить отображение древа специальных возможностей
Вручную включает поддержку специальных возможностей от Chrome, позволяя пользователям открывать специальные возможности в настройках приложения. См. документацию специальных возможностей Chromium для подробной информации. Отключено по умолчанию.
Этот метод должен вызываться после того, как произошло событие ready.
Note: Rendering accessibility tree can significantly affect the performance of your app. It should not be enabled by default.
app.showAboutPanel()
Show the app's about panel options. These options can be overridden with app.setAboutPanelOptions(options). This function runs asynchronously.
app.setAboutPanelOptions(options)
Установите описание панели опций. This will override the values defined in the app's .plist file on macOS. Смотрите Apple docs для получения более подробной информации. На Linux необходимо устанавливать все значения; по умолчанию значений нет.
If you do not set credits but still wish to surface them in your app, AppKit will look for a file named "Credits.html", "Credits.rtf", and "Credits.rtfd", in that order, in the bundle returned by the NSBundle class method main. The first file found is used, and if none is found, the info area is left blank. See Apple documentation for more information.
app.isEmojiPanelSupported()
Возвращает boolean - позволяет или нет текущая версия ОС выбирать нативные эмодзи.
app.showEmojiPanel() macOS Windows
Показывает нативный выбор эмодзи.
app.startAccessingSecurityScopedResource(bookmarkData) MAS
- bookmarkDatastring - Закодированные base64 данные закладки области безопасности, возвращаемые- dialog.showOpenDialogили- dialog.showSaveDialog.
Возвращает Function. Эта функция должна быть вызвана после того как вы have finished accessing the security scoped file. Если Вы забыли, запретить доступ к закладке, возможно утечка ресурсов ядра и ваше приложение потеряет свою способность выйти за пределы песочницы, пока не будет перезапущено.
const { app, dialog } = require('electron')
const fs = require('node:fs')
let filepath
let bookmark
dialog.showOpenDialog(null, { securityScopedBookmarks: true }).then(({ filePaths, bookmarks }) => {
  filepath = filePaths[0]
  bookmark = bookmarks[0]
  fs.readFileSync(filepath)
})
// ... restart app ...
const stopAccessingSecurityScopedResource = app.startAccessingSecurityScopedResource(bookmark)
fs.readFileSync(filepath)
stopAccessingSecurityScopedResource()
Начать доступ в области безопасности ресурса. С помощью этого метода Electron приложения, которые упакованы для Mac App Store, могут выходить за пределы их песочницы, чтобы получить файлы, выбранные пользователем. Подробное описание как работает эта система, смотри Apple's documentation.
app.enableSandbox()
Включает полноценный режим песочницы в приложении. This means that all renderers will be launched sandboxed, regardless of the value of the sandbox flag in WebPreferences.
Этот метод может быть вызван только до того, как приложение будет готово.
app.isInApplicationsFolder() macOS
Возвращает boolean - выполняется ли приложение в данный момент из системной папки Приложения. Используйте в сочетании с app.moveToApplicationsFolder()
app.moveToApplicationsFolder([options]) macOS
Возвращает boolean - если перемещение было успешным. Обратите внимание, что если перемещение выполнено успешно, ваше приложение закроется и перезапустится.
По умолчанию диалоговое окно подтверждения не отображается. Если нужно подтверждение операции пользователем, используйте dialog API.
ПРИМЕЧАНИЕ: Этот метод выдает ошибки, если что-то, кроме пользователя, вызывает переход к неудачи. Например, если пользователь отменяет диалоговое окно авторизации, этот метод возвращает false. Если нам не удастся выполнить копирование, этот метод вызовет ошибку. Сообщение об ошибке должно быть информативным и сообщать вам именно то, что пошло не так.
По умолчанию, если приложение с тем же именем, что и перемещаемое, существует в каталоге Applications и not запущено, существующее приложение будет удалено, а активное приложение перемещено на свое место. If it is running, the preexisting running app will assume focus and the previously active app will quit itself. Это поведение можно изменить, предоставив необязательный обработчик конфликтов, где логическое значение, возвращаемое обработчиком, определяет, будет ли конфликт перемещения разрешен с поведением по умолчанию.  то есть возврат false гарантирует, что дальнейшие действия не будут приняты, возврат true приведет к поведению по умолчанию и продолжению метода.
Например:
const { app, dialog } = require('electron')
app.moveToApplicationsFolder({
  conflictHandler: (conflictType) => {
    if (conflictType === 'exists') {
      return dialog.showMessageBoxSync({
        type: 'question',
        buttons: ['Halt Move', 'Continue Move'],
        defaultId: 0,
        message: 'An app of this name already exists'
      }) === 1
    }
  }
})
Будет означать, что если приложение уже существует в каталоге пользователя, если пользователь выберет 'Continue Move', то эта функция будет продолжена с поведением по умолчанию, и существующее приложение будет удалено и активное приложение будет перемещено на место.
app.isSecureKeyboardEntryEnabled() macOS
Возвращает boolean - если включен Secure Keyboard Entry.
По умолчанию этот API вернет false.
app.setSecureKeyboardEntryEnabled(enabled) macOS
- enabledboolean - Включить или отключить- Secure Keyboard Entry
Установка Secure Keyboard Entry включена в вашем приложении.
Используя этот API, можно предотвратить перехват важной информации, такой как пароль и другую конфиденциальную информацию, другими процессами.
См. Apple's documentation для получения дополнительной информации подробности.
Примечание: Включайте Secure Keyboard Entry только тогда, когда он нужен, и отключайте, когда он больше не нужен.
app.setProxy(config)
- configProxyConfig
Возвращает Promise<void> - Разрешение после завершения процесса настройки прокси.
Sets the proxy settings for networks requests made without an associated Session. Currently this will affect requests made with Net in the utility process and internal requests made by the runtime (ex: geolocation queries).
This method can only be called after app is ready.
app.resolveProxy(url)
- urlURL
Returns Promise<string> - Resolves with the proxy information for url that will be used when attempting to make requests using Net in the utility process.
app.setClientCertRequestPasswordHandler(handler)  Linux
- 
handlerFunction<Promise<string>>- Объект clientCertRequestParams- hostnamestring - the hostname of the site requiring a client certificate
- tokenNamestring - the token (or slot) name of the cryptographic device
- isRetryboolean - whether there have been previous failed attempts at prompting the password
 
 Returns Promise<string>- Resolves with the password
- Объект 
The handler is called when a password is needed to unlock a client certificate for hostname.
const { app } = require('electron')
async function passwordPromptUI (text) {
  return new Promise((resolve, reject) => {
    // display UI to prompt user for password
    // ...
    // ...
    resolve('the password')
  })
}
app.setClientCertRequestPasswordHandler(async ({ hostname, tokenName, isRetry }) => {
  const text = `Please sign in to ${tokenName} to authenticate to ${hostname} with your certificate`
  const password = await passwordPromptUI(text)
  return password
})
Свойства
app.accessibilitySupportEnabled macOS Windows
boolean свойство, которое true, если поддержка специальных возможностей Chrome включена, иначе false. Это свойство будет true, если использование вспомогательных технологий, таких как средства чтения с экрана, были обнаружены. Устанавливая это свойство на true, вручную включает поддержку специальных возможностей Chrome, позволяя разработчикам показать пользователю переключатели специальных возможностей в настройках приложения.
См. Chromium's accessibility docs для получения более подробной информации. Отключено по умолчанию.
Этот метод должен вызываться после того, как произошло событие ready.
Note: Rendering accessibility tree can significantly affect the performance of your app. It should not be enabled by default.
app.applicationMenu
A Menu | null property that returns Menu if one has been set and null otherwise. Users can pass a Menu to set this property.
app.badgeCount Linux macOS
Свойство Integer, которое возвращает количество значков для текущего приложения. Установка счетчика на 0 скроет значок.
В macOS установка любого ненулевого целого числа отображается на значке док-станции. В Linux это свойство работает только для модуля запуска Unity.
Примечание: для работы Unity лаунчера требуется файл .desktop. Дополнительную информациюможно прочесть в Документации по интеграции Юнити.
Примечание: На macOS, вы должны убедиться, что ваше приложение имеет разрешение на отображение уведомлений.
app.commandLine Только чтение
A CommandLine object that allows you to read and manipulate the command line arguments that Chromium uses.
app.dock macOS Readonly
Это Dock | undefined объект, который позволяет вам выполнять действия со значком вашего приложения в пользовательском док на macOS.
app.isPackaged Только чтение
boolean свойство, которое возвращает true, если приложение упаковано, иначе false. Для многих приложений это свойство может использоваться для отличия среды разработки и продакшна.
app.name
Свойство string, указывающее имя текущего приложения, которое является именем в файле package.json.
Обычно поле name в package.json является коротким именем, написанном в нижнем регистре, согласно спецификации модулей npm. Обычно Вы должны также указать поле productName, которое пишется заглавными буквами - имя вашего приложения, и которое будет предпочтительнее name для Electron.
app.userAgentFallback
A string which is the user agent string Electron will use as a global fallback.
Это агент пользователя, который будет использоваться, если ни один агент пользователя не установлен на уровнях webContents или session.  Это полезно для того, чтобы все ваше приложение имело один и тот же пользовательский агент.  Установите пользовательское значение как можно раньше в инициализации Ваших приложений, чтобы убедиться, что используется переопределенное значение.
app.runningUnderARM64Translation Readonly macOS Windows
A boolean which when true indicates that the app is currently running under an ARM64 translator (like the macOS Rosetta Translator Environment or Windows WOW).
You can use this property to prompt users to download the arm64 version of your application when they are mistakenly running the x64 version under Rosetta or WOW.