New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@electron-toolkit/utils

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@electron-toolkit/utils

Utils for Electron main process.

  • 4.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
32K
increased by11.57%
Maintainers
1
Weekly downloads
 
Created
Source

@electron-toolkit/utils

Utils for Electron main process.


Install

npm i @electron-toolkit/utils

APIs

is

  • dev

    • Type: boolean, true when app.isPackaged is false

platform

  • isWindows

    • Type: boolean, true when process.platform is win32
  • isMacOS

    • Type: boolean, true when process.platform is darwin
  • isLinux

    • Type: boolean, true when process.platform is linux

electronApp

  • setAppUserModelId

    • Type: (id: string): void

    • Platform: win32

      The id is used only when the applcation is packaged. otherwise use the process.execPath value as id. See https://www.electronjs.org/docs/latest/tutorial/notifications#windows

  • setAutoLaunch

    • Type: (auto: boolean) => boolean

    • Platform: darwin,win32

      Set the app automatically open at login or not

  • skipProxy

    • Type: () => Promise

    • Kind: async, sequential

      Skip proxy for Electron app

optimizer

  • watchWindowShortcuts

    • Type: (window: BrowserWindow, shortcutOptions?: shortcutOptions) => void

      Default open or close DevTools by F12 in development and ignore CommandOrControl + R in production. Furthermore, you can use shortcutOptions to control more shortcuts.

      Example:

      import { app } from 'electron'
      import { optimizer } from '@electron-toolkit/utils'
      
      app.whenReady().then(() => {
        app.on('browser-window-created', (_, window) => {
          optimizer.watchWindowShortcuts(window)
        })
      })
      
  • registerFramelessWindowIpc

    • Type: () => void

      If use a frameless window which hide the system's native window controls, we may need to create custom window controls in HTML.

      The frameless window ipc allow the renderer process to control the browser window.

      The ipc channel named win:invoke.

      Example:

      // main.js
      import { app } from 'electron'
      import { optimizer } from '@electron-toolkit/utils'
      
      app.whenReady().then(() => {
        optimizer.registerFramelessWindowIpc()
      })
      
      // renderer.js or preload.js
      ipcRenderer.send('win:invoke', 'show')
      ipcRenderer.send('win:invoke', 'showInactive')
      ipcRenderer.send('win:invoke', 'min')
      ipcRenderer.send('win:invoke', 'max')
      ipcRenderer.send('win:invoke', 'close')
      

Keywords

FAQs

Package last updated on 06 Feb 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc