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 🙏

© 2026 – Pkg Stats / Ryan Hefner

electron-ipc-typed

v0.1.0

Published

ipc typed utils for electron

Readme

electron-ipc-typed

Type-safe IPC utilities for Electron applications.

Features

  • Type-safe IPC communication between main and renderer processes
  • Full TypeScript support with automatic type inference
  • Simple API - no boilerplate code required

Installation

npm install electron-ipc-typed

Usage

1. Define IPC Types

Create a shared types file:

// ipc-type.ts
import type { IpcType } from 'electron-ipc-typed'

export interface MyIpcType extends IpcType<'app'> {
  handle: {
    'app:get-version': () => Promise<string>
    'app:get-config': (key: string) => Promise<any>
  }
  on: {
    'app:update-available': (version: string) => void
  }
  emit: {
    'app:state-change': [state: string, timestamp: number]
  }
}

2. Main Process

// main process
import { createIpc } from 'electron-ipc-typed'
import type { MyIpcType } from './ipc-type'

const ipc = createIpc<MyIpcType>()

// Register handle - renderer calls invoke()
ipc.handle('app:get-version', () => {
  return '1.0.0'
})

// Listen for events from renderer
ipc.on('app:update-available', (_, version) => {
  console.log('Update available:', version)
})

// Send events to renderer
ipc.emit(webContents, 'app:state-change', 'running', Date.now())

3. Preload Script

// preload.ts
import { injectIPCBridge } from 'electron-ipc-typed/preload'

injectIPCBridge()

4. Renderer Process

// renderer process
import { useIpcClient } from 'electron-ipc-typed/renderer'
import type { MyIpcType } from './ipc-type'

const client = useIpcClient<MyIpcType>()

// Call main process handlers
const version = await client.invoke('app:get-version')

// Listen for events from main process
const off = client.on('app:state-change', (_, state, timestamp) => {
  console.log('State changed:', state, timestamp)
})

// Send events to main process
client.emit('app:update-available', '2.0.0')

off()

Example

Get working example from electron-ipc-example.

API

Main Process

createIpc<T>()

Creates an IPC handler for the main process.

  • handle(channel, handler) - Register a handler for invoke() calls
  • on(channel, listener) - Listen for emit() events from renderer
  • emit(webContents, channel, ...args) - Send events to renderer

Renderer Process

useIpcClient<T>()

Creates an IPC client for the renderer process.

  • invoke(channel, ...args) - Call a main process handler (returns Promise)
  • on(channel, callback) - Listen for events from main process (returns unsubscribe function)
  • once(channel, callback) - Listen for event once
  • emit(channel, ...args) - Send events to main process

Preload

injectIPCBridge()

Exposes the IPC bridge to the renderer process via window.$ElectronBridge.

Repository

GitHub

License

MIT