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'
Возвращает:
eventEventlaunchInfoRecord<string, any> | NotificationResponse macOS
Происходит единожды при завершении инициализации Electron. В macOS, launchInfo содержит userInfo о NSUserNotification или информацию из UNNotificationResponse которая использовалась для открытия приложения, если оно было запущено из центра уведомлений (Notification Center). Вы также можете вызвать app.isReady() для проверки того, что событие уже произошло и app.whenReady() чтобы получить Promise, который выполнится, когда Electron будет инициализирован.
[!NOTE] The
readyevent 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 thereadyevent, 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'
Возвращает:
eventEvent
Происходит до того, как приложение начнет закрывать свои окна. Вызов event.preventDefault() предотвратит поведение по умолчанию, которое приводит к прекращению работы приложения.
[!NOTE] If application quit was initiated by
autoUpdater.quitAndInstall(), thenbefore-quitis emitted after emittingcloseevent on all windows and closing them.
[!NOTE] On Windows, this event will not be emitted if the app is closed due to a shutdown/restart of the system or a user logout.
Событие: 'will-quit'
Возвращает:
eventEvent
Возникает, когда все окна будут закрыты и приложение завершит работу. Вызов event.preventDefault() предотвратит поведение по умолчанию, которое приводит к прекращению работы приложения.
Смотрите описание события window-all-closed для различий между событиями will-quit и window-all-closed.
[!NOTE] On Windows, this event will not be emitted if the app is closed due to a shutdown/restart of the system or a user logout.
Событие: 'quit'
Возвращает:
eventEventexitCodeInteger
Происходит при выходе из приложения.
[!NOTE] On Windows, this event will not be emitted if the app is closed due to a shutdown/restart of the system or a user logout.
Событие: 'open-file' macOS
Возвращает:
eventEventpathstring
Происходит, когда пользователь хочет открыть файл. Событие open-file обычно происходит, когда приложение уже открыто и ОС хочет переиспользовать приложение, чтобы открыть файл. open-file также происходит, когда файл уже находится на Dock панели, но приложение еще не запущено. Убедитесь, что обработчик события open-file в самом начале запуска Вашего приложения обрабатывает этот случай (даже прежде, чем происходит событие ready).
Вы должны вызвать event.preventDefault(), если хотите обработать это событие.
На Windows Вам необходимо распарсить process.argv (в основном процессе), чтобы получить путь к файлу.
Событие: 'open-url' macOS
Возвращает:
eventEventurlstring
Происходит, когда пользователь хочет открыть 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
Возвращает:
eventEventhasVisibleWindowsboolean
Происходит при активации приложения. Различные действия могут запускать это событие, например, запуск приложения в первый раз, попытка перезапустить приложение, когда оно уже запущено, или щелкнуть значок приложения в dock или панели задач.
Событие: 'did-become-active' macOS
Возвращает:
eventEvent
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
Возвращает:
eventEvent
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
Возвращает:
eventEventtypestring - A string identifying the activity. Maps toNSUserActivity.activityType.userInfounknown - содержит специфическое для приложения состояние, сохраненное на другом устройстве.- Объект
detailswebpageURLstring (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
Возвращает:
eventEventtypestring - A string identifying the activity. Maps toNSUserActivity.activityType.
Emitted during Handoff before an activity from a different device wants to be resumed. Если Вы хотите обработать это событие, следует вызвать event.preventDefault().
Event: 'continue-activity-error' macOS
Возвращает:
eventEventtypestring - A string identifying the activity. Maps toNSUserActivity.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
Возвращает:
eventEventtypestring - A string identifying the activity. Maps toNSUserActivity.activityType.userInfounknown - содержит специфичное, для приложения, состояние, сохраненное в хранилище по активности.
Emitted during Handoff after an activity from this device was successfully resumed on another one.
Event: 'update-activity-state' macOS
Возвращает:
eventEventtypestring - A string identifying the activity. Maps toNSUserActivity.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
Возвращает:
eventEvent
Возникает при нажатии пользователем кнопки новой вкладки macOS. Кнопка новой вкладки отобразится только если текущий BrowserWindow имеет tabbingIdentifier
Событие: 'browser-window-blur'
Возвращает:
eventEventwindowBrowserWindow
Emitted when a browserWindow gets blurred.
Событие: 'browser-window-focus'
Возвращает:
eventEventwindowBrowserWindow
Emitted when a browserWindow gets focused.
Событие: 'browser-window-created'
Возвращает:
eventEventwindowBrowserWindow
Emitted when a new browserWindow is created.
Событие: 'web-contents-created'
Возвращает:
eventEventwebContentsWebContents
Emitted when a new webContents is created.
Событие: 'certificate-error'
Возвращает:
eventEventwebContentsWebContentsurlstringerrorstring - The error codecertificateCertificatecallbackFunctionisTrustedboolean - 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'
Возвращает:
eventEventwebContentsWebContentsurlURLcertificateListCertificate[]callbackFunctioncertificateCertificate (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'
Возвращает:
eventEventwebContentsWebContents (optional)authenticationResponseDetailsObjecturlURLpidnumber
authInfoObjectisProxybooleanschemestringhoststringportIntegerrealmstring
callbackFunctionusernamestring (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'
Возвращает:
eventEventwebContentsWebContentsdetailsRenderProcessGoneDetails
Emitted when the renderer process unexpectedly disappears. This is normally because it was crashed or killed.
Событие 'child-process-gone'
Возвращает:
eventEvent- Объект
detailstypestring - Тип процесса. Одно из следующих значений:UtilityZygoteSandbox helperGPUPepper PluginPepper Plugin BrokerUnknown
reasonstring - Причина исчезновения дочернего процесса. Возможные значения:clean-exit- Process exited with an exit code of zeroabnormal-exit- Process exited with a non-zero exit codekilled- Process was sent a SIGTERM or otherwise killed externallycrashed- Process crashedoom- Process ran out of memorylaunch-failed- Process never successfully launchedintegrity-failure- Windows code integrity checks failedmemory-eviction- Process proactively terminated to prevent a future out-of-memory (OOM) situation
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
Возвращает:
eventEventaccessibilitySupportEnabledboolean -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'
Возвращает:
eventEventargvstring [] - массив аргументов командной строки вторичных экземпляровworkingDirectorystring - рабочий каталог вторичных экземпляровadditionalDataunknown - A JSON object of additional data passed from the second instance
Это событие произойдет внутри главного экземпляра Вашего приложения, когда второй экземпляр был запущен и вызывает app.requestSingleInstanceLock().
argv это массив аргументов командной строки второго экземпляра, а workingDirectory это текущий рабочий каталог. Обычно приложения реагируют на это, делая их основное окно сфокусированным и не свернутым.
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.
[!NOTE] If the second instance is started by a different user than the first, the
argvarray will not include the arguments.
Это событие гарантировано происходит после события ready в app.
[!NOTE] Extra command line arguments might be added by Chromium, such as
--original-process-start-time.
Методы
Объект app имеет следующие методы:
[!NOTE] Some methods are only available on specific operating systems and are labeled as such.
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
assetsThe directory where app assets such asresources.pakare stored. By default this is the same as the folder containing theexepath. Available on Windows and Linux only.userDataThe directory for storing your app's configuration files, which by default is theappDatadirectory 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 bySession, such as localStorage, cookies, disk cache, downloaded dictionaries, network state, devtools files. By default this points touserData. 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 theuserDatadirectory.tempвременный каталог.exeтекущий исполняемый файл.moduleThe location of the Chromium module. By default this is synonymous withexe.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)
namestringpathstring
Переопределяет 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
Переопределяет имя текущего приложения.
[!NOTE] This function overrides the name used internally by Electron; it does not affect the name that the OS uses.
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.
[!NOTE] When distributing your packaged app, you have to also ship the
localesfolder.
[!NOTE] This API must be called after the
readyevent 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.
[!NOTE] When unable to detect locale country code, it returns empty string.
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
readyevent 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.getRecentDocuments() macOS Windows
Returns string[] - An array containing documents in the most recent documents list.
const { app } = require('electron')
const path = require('node:path')
const file = path.join(app.getPath('desktop'), 'foo.txt')
app.addRecentDocument(file)
const recents = app.getRecentDocuments()
console.log(recents) // ['/path/to/desktop/foo.txt'}
app.setAsDefaultProtocolClient(protocol[, path, args])
protocolstring - имя вашего протокола, без://. For example, if you want your app to handleelectron://links, call this method withelectronas the parameter.pathstring (optional) Windows - The path to the Electron executable. По умолчаниюprocess.execPathargsstring[] (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 editinginfo.plistwith a text editor. Please refer to Apple's documentation for details.
[!NOTE] In a Windows Store environment (when packaged as an
appx) this API will returntruefor all calls but the registry key it sets won't be accessible by other applications. In order to register your Windows Store application as a default protocol handler you must declare the protocol in your manifest.
The API uses the Windows Registry and LSSetDefaultHandlerForURLScheme internally.
app.removeAsDefaultProtocolClient(protocol[, path, args]) macOS Windows
protocolstring - имя вашего протокола, без://.pathstring (optional) Windows - по умолчаниюprocess.execPathargsstring[] (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.execPathargsstring[] (optional) Windows - по умолчанию пустой массив
Returns boolean - Whether the current executable is the default handler for a protocol (aka URI scheme).
[!NOTE] On macOS, you can use this method to check if the app has been registered as the default protocol handler for a protocol. You can also verify this by checking
~/Library/Preferences/com.apple.LaunchServices.pliston the macOS machine. Please refer to Apple's documentation for details.
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 ofTaskobjects
Adds tasks to the Tasks category of the Jump List on Windows.
tasks is an array of Task objects.
Возвращает boolean - успешный ли вызов.
[!NOTE] If you'd like to customize the Jump List even more use
app.setJumpList(categories)instead.
app.getJumpListSettings() Windows
Возвращает Object:
minItemsInteger - минимальное количество элементов, которые будут показаны в Jump List (для более подробного описания этого значение см. документация MSDN).removedItemsJumpListItem[] - Array ofJumpListItemobjects 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 ofJumpListCategoryobjects.
Возвращает 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 standardTaskscategory.fileTypeRegistrationError- была сделана попытка добавить ссылку на файл в Jump List для типа файла, который в приложении не зарегистрирован для обработки.customCategoryAccessDeniedError- настраиваемые категории не могут быть добавлены в Jump List из-за ограничений конфиденциальности пользователей или групповой политики.
Если categories - null, то ранее установленный настраиваемый Jump List (если таковой имеется) будет заменён стандартным Jump List для приложения (управляется Windows).
[!NOTE] If a
JumpListCategoryobject has neither thetypenor thenameproperty set then itstypeis assumed to betasks. If thenameproperty is set but thetypeproperty is omitted then thetypeis assumed to becustom.
[!NOTE] Users can remove items from custom categories, and Windows will not allow a removed item to be added back into a custom category until after the next successful call to
app.setJumpList(categories). Any attempt to re-add a removed item to a custom category earlier than that will result in the entire custom category being omitted from the Jump List. The list of removed items can be obtained usingapp.getJumpListSettings().
[!NOTE] The maximum length of a Jump List item's
descriptionproperty 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 toNSUserActivity.activityType.userInfoany- специфичное, для приложения, состояние для использования другими устройствами.webpageURLstring (optional) - The webpage to load in a browser if no suitable app is installed on the resuming device. The scheme must behttporhttps.
Создает NSUserActivity и задает её в качестве текущей активности. The activity is eligible for Handoff to another device afterward.
app.getCurrentActivityType() macOS
Возвращает string - тип текущей выполняемой активности.
app.invalidateCurrentActivity() macOS
Invalidates the current Handoff user activity.
app.resignCurrentActivity() macOS
Marks the current Handoff user activity as inactive without invalidating it.
app.updateCurrentActivity(type, userInfo) macOS
typestring - уникально идентифицирует действие. Maps toNSUserActivity.activityType.userInfoany- специфичное, для приложения, состояние для использования другими устройствами.
Обновляет текущую активность, если его тип совпадает с type, объединяет записи из userInfo в его текущем словаре userInfo.
app.setAppUserModelId(id) Windows
idstring
Changes the Application User Model ID to 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
callbackFunctionresultInteger - результат импорта.
Импорт сертификата в формате pkcs12 из платформы хранилища сертификатов. callback is called with the result of import operation, a value of 0 indicates success while any other value indicates failure according to Chromium net_error_list.
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/.
[!NOTE] This information is only usable after the
gpu-info-updateevent is emitted.
app.getGPUInfo(infoType)
infoTypestring - Может бытьbasicилиcomplete.
Возвращает Promise<unknown>
For infoType equal to complete: Promise is fulfilled with Object containing all the GPU Information as in chromium's GPUInfo object. Это включает информацию о версии и драйвере, показанную на странице 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.
[!NOTE] Unity launcher requires a
.desktopfile to work. For more information, please read the Unity integration documentation.
[!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 ofnot-registered,enabled,requires-approval, ornot-found.executableWillLaunchAtLoginboolean Windows -trueif app is set to open at login and its run key is not deactivated. This differs fromopenAtLoginas it ignores theargsoption, this property will be true if the given executable would be launched at login with any arguments.launchItemsObject[] Windowsnamestring 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 ofuserormachine. Indicates whether the registry entry is underHKEY_CURRENT USERorHKEY_LOCAL_MACHINE.enabledboolean Windows -trueif the app registry key is startup approved and therefore shows asenabledin Task Manager and Windows settings.
app.setLoginItemSettings(settings) macOS Windows
- Объект
settingsopenAtLoginboolean (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 soapp.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’sContents/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’sContents/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’sContents/Library/LoginItemsdirectory.
serviceNamestring (optional) macOS - The name of the service. Required iftypeis 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 andenable / disablethe App in Task Manager and Windows Settings. По умолчаниюtrue.namestring (optional) Windows - value name to write into registry. Defaults to the app's AppUserModelId().
Устанавливает параметры приложения, при входе в систему.
To work with Electron's autoUpdater on Windows, which uses Squirrel, you'll want to set the launch path to your executable's name but a directory up, which is a stub application automatically generated by Squirrel which will automatically launch the latest version.
const { app } = require('electron')
const path = require('node:path')
const appFolder = path.dirname(process.execPath)
const ourExeName = path.basename(process.execPath)
const stubLauncher = path.resolve(appFolder, '..', ourExeName)
app.setLoginItemSettings({
openAtLogin: true,
path: stubLauncher,
args: [
// You might want to pass a parameter here indicating that this
// app was launched via login, but you don't have to
]
})
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, позволяя пользователям открывать специальные возможности в настройках приложения. See Chromium's accessibility docs for more details. Отключено по умолчанию.
Этот метод должен вызываться после того, как произошло событие ready.
[!NOTE] Rendering accessibility tree can significantly affect the performance of your app. It should not be enabled by default. Calling this method will enable the following accessibility support features:
nativeAPIs,webContents,inlineTextBoxes, andextendedProperties.
app.getAccessibilitySupportFeatures() macOS Windows
Returns string[] - Array of strings naming currently enabled accessibility support components. Возможные значения:
nativeAPIs- Native OS accessibility APIs integration enabled.webContents- Web contents accessibility tree exposure enabled.inlineTextBoxes- Inline text boxes (character bounding boxes) enabled.extendedProperties- Extended accessibility properties enabled.screenReader- Screen reader specific mode enabled.html- HTML accessibility tree construction enabled.labelImages- Accessibility support for automatic image annotations.pdfPrinting- Accessibility support for PDF printing enabled.
Примечания:
- The array may be empty if no accessibility modes are active.
- Use
app.isAccessibilitySupportEnabled()for the legacy boolean check; prefer this method for granular diagnostics or telemetry.
Пример:
const { app } = require('electron')
app.whenReady().then(() => {
if (app.getAccessibilitySupportFeatures().includes('screenReader')) {
// Change some app UI to better work with Screen Readers.
}
})
app.setAccessibilitySupportFeatures(features) macOS Windows
featuresstring[] - An array of the accessibility features to enable.
Возможные значения:
nativeAPIs- Native OS accessibility APIs integration enabled.webContents- Web contents accessibility tree exposure enabled.inlineTextBoxes- Inline text boxes (character bounding boxes) enabled.extendedProperties- Extended accessibility properties enabled.screenReader- Screen reader specific mode enabled.html- HTML accessibility tree construction enabled.labelImages- Accessibility support for automatic image annotations.pdfPrinting- Accessibility support for PDF printing enabled.
To disable all supported features, pass an empty array [].
Пример:
const { app } = require('electron')
app.whenReady().then(() => {
// Enable a subset of features:
app.setAccessibilitySupportFeatures([
'screenReader',
'pdfPrinting',
'webContents'
])
// Other logic
// Some time later, disable all features:
app.setAccessibilitySupportFeatures([])
})
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. See the Apple docs for more details. На 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. If you do not remember to stop accessing the bookmark, kernel resources will be leaked and your app will lose its ability to reach outside the sandbox completely, until your app is restarted.
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, могут выходить за пределы их песочницы, чтобы получить файлы, выбранные пользователем. See Apple's documentation for a description of how this system works.
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, можно предотвратить перехват важной информации, такой как пароль и другую конфиденциальную информацию, другими процессами.
See Apple's documentation for more details.
[!NOTE] Enable
Secure Keyboard Entryonly when it is needed and disable it when it is no longer needed.
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>>- Объект
clientCertRequestParamshostnamestring - the hostname of the site requiring a client certificatetokenNamestring - the token (or slot) name of the cryptographic deviceisRetryboolean - 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, позволяя разработчикам показать пользователю переключатели специальных возможностей в настройках приложения.
See Chromium's accessibility docs for more details. Отключено по умолчанию.
Этот метод должен вызываться после того, как произошло событие 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.
[!NOTE] Unity launcher requires a
.desktopfile to work. For more information, please read the Unity integration documentation.
[!NOTE] On macOS, you need to ensure that your application has the permission to display notifications for this property to take effect.
app.commandLine Readonly
A CommandLine object that allows you to read and manipulate the command line arguments that Chromium uses.
app.dock macOS Readonly
A Dock | undefined property (Dock on macOS, undefined on all other platforms) that allows you to perform actions on your app icon in the user's dock.
app.isPackaged Readonly
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.