npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@kyohxt/electron-toolkit-utils

v1.0.8

Published

Utils for Electron main process.

Downloads

10

Readme

@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

devTools

  • install

    • Type: (extensionId: ChromeExtension, options?: ChromeExtensionOptions): Promise

    • Kind: async, sequential

      Example:

      // main.js
      import { app } from 'electron'
      import { devTools } from '@electron-toolkit/utils'
      
      app.whenReady().then(() => {
        devTools.install('REACT_DEVELOPER_TOOLS', { allowFileAccess: true })
      })

      Note: extensionId see ChromeExtension

electronApp

  • setAppUserModelId

  • 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

ipcHelper

The Ipc helper can make you easy to manage your main Ipc.

  • handle

    • Type: (channel: string, listener: (event: IpcMainInvokeEvent, ...args: any[]) => Promise | any): void

    • Kind: async, sequential

  • on

    • Type: () => (channel: string, listener: (event: IpcMainEvent, ...args: any[]) => void): this
  • removeAllListeners

    • Type: (): this

      Remove all register ipc listeners

  • removeAllHandlers

    • Type: (): void

      Remove all register ipc handlers

  • removeListeners

    • Type: (channels: string[]): this

      Remove ipc listeners

  • removeHandlers

    • Type: (channels: string[]): void

      Remove ipc handlers

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')