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

ipc-eventer

v1.0.3

Published

Cross-platform IPC event manager using Named Pipes (Windows) and Unix Domain Sockets (Linux/macOS) built with Node.js, based on aosx socket.

Readme

ipc-eventer


npm version license Node.js


Secure, Encrypted, Event-Based Inter-Process Communication For Node.js over Named Pipes (Windows) or Unix Domain Sockets (Linux/macOS).

ipc-eventer is a fast, event-based IPC system for Node.js with optional AES-256-GCM end-to-end encryption — perfect for:

  • Background managers and workers
  • Secure communication between local processes or devices

✨ Features

  • 🔌 Simple EventEmitter-style API (emit / on)
  • 🔒 Built-in AES-256-GCM encryption (password-protected)
  • 🔄 Auto-reconnect support (configurable)
  • 📢 Broadcast messages to all clients
  • 🆔 Unique client IDs and customizable friendly names
  • 🖥 Cross-platform: Windows, macOS, Linux
  • 🚀 Zero dependencies — only Node.js core modules
  • 📡 Uses native Named Pipes (Windows) or Unix Domain Sockets (macOS/Linux)

🚀 Overview

ipc-eventer enables secure and reliable communication between Node.js processes on the same machine. It is ideal for:

  • Modular, multi-process apps
  • Local service orchestration and messaging
  • Secure client-server IPC without network exposure

Key features include automatic reconnects, heartbeat monitoring, and message encryption — all via a simple event-driven API.


📖 Details

  • Local IPC only: Uses OS-native IPC (Named Pipes on Windows, Unix Domain Sockets on Linux/macOS).
  • Strong encryption: AES-256-GCM with password-based key derivation.
  • EventEmitter-based: Easy .on() and .emit() methods for messaging.
  • Heartbeat & auto-reconnect: Detects dead connections and reconnects clients automatically.
  • Clean disconnect handling: Server can force disconnect clients gracefully.
  • Lightweight: Minimal dependencies, just Node.js core modules.

🔐 Security

  • All messages are encrypted with AES-256-GCM before sending.
  • Password-derived encryption keys use PBKDF2 with HMAC-SHA256 and 200,000 iterations.
  • Protects against replay attacks and message tampering via authentication tags.
  • Encrypted handshake ensures metadata and identification are protected.

Important: Keep your shared password secret. Use environment variables or secure config stores.


⚙️ Architecture

  • Server listens on a named pipe/socket and accepts multiple client connections.
  • Clients connect with a unique ID and optional friendly name.
  • Messages are newline-delimited JSON strings, encrypted transparently.
  • Both server and clients emit and listen to events via their sockets.
  • Heartbeat ping/pong detects stale connections.
  • Clients auto-reconnect after disconnection/errors.

📌 Important Notes

  • Works only on the same machine — no network/TCP support.
  • Use unique pipe names to avoid conflicts.
  • Only one active connection per client ID; reconnect closes previous socket.
  • Always handle "error" events to prevent crashes.
  • Client and server passwords must match for encryption.
  • Server mediates all communication; no direct client-to-client broadcast.
  • Cross-platform support for Windows, macOS, Linux.

🛠 Troubleshooting

| Problem | Possible Cause | Solution | | ------------------------- | ----------------------------------- | ----------------------------------------- | | Client fails to connect | Server not running or pipe busy | Verify server status; change pipe name | | Encryption errors | Password mismatch or corrupt data | Check matching passwords | | Unexpected disconnections | Heartbeat timeout or socket closed | Ensure server running and reachable | | EADDRINUSE on server | Pipe/socket already in use | Stop conflicting processes or rename pipe | | Invalid JSON received | Data corruption or version mismatch | Send only ipc-eventer formatted messages |


🔧 Best Practices

  • Store encryption passwords securely (env vars, vaults).
  • Handle disconnects and errors gracefully for reliability.
  • Always listen for "error" events on server and clients.
  • Use meaningful, unique pipe names.
  • Send small-to-medium-sized JSON-serializable messages.
  • Structure emitted events clearly.

📦 Installation

npm install ipc-eventer

🚀 Quick Start

Server Example

import { IPCServer } from "ipc-eventer";

const ipcServer = new IPCServer("aosx-test-pipe");

ipcServer.on("listening", (pipeName) => {
  console.log(`✅ Server listening on "${pipeName}"`);
});

ipcServer.on("connected", (socket) => {
  console.log(`📡 Client connected: ${socket.name} (${socket.id})`);

  // Welcome client
  socket.emit("message", `Welcome, ${socket.name}!`);

  // Broadcast join notice
  socket.broadcast("message", `👋 ${socket.name} joined!`);

  // Echo example
  socket.on("echo", (data) => {
    console.log(`🔄 Echo from ${socket.name}:`, data);
    socket.emit("echo", data);
  });
});

ipcServer.on("disconnected", (socket) => {
  console.log(`❌ Client disconnected: ${socket.name} (${socket.id})`);
});

ipcServer.start();

Client Example

import { IPCClient } from "ipc-eventer";

const ipcClient = new IPCClient("aosx-test-pipe", {
  name: "TestClient",
  reconnect: true,
  reconnectInterval: 3000,
});

ipcClient.on("connected", (socket) => {
  console.log(`🎉 Connected as ${socket.name} (${socket.id})`);

  socket.on("message", (msg) => {
    console.log("💬 Server says:", msg);
  });

  socket.emit("echo", "Hello from client!");
});

ipcClient.on("message", (msg) => {
  console.log("📢 Broadcast:", msg);
});

ipcClient.connect();

🔒 Encryption

To enable AES-256-GCM encryption, provide a shared password:

new IPCServer("pipe-name", {
  password: "mySecret123",
});

new IPCClient("pipe-name", {
  password: "mySecret123",
});
  • Password is converted into a strong encryption key using PBKDF2.
  • Messages are encrypted transparently before sending.
  • No password means plaintext communication.

📡 Broadcast Messages

From the server, broadcast to all clients easily:

socket.broadcast("message", "Hello all clients!");

🔄 Auto Reconnect (Client)

Enable auto-reconnect in client options:

const client = new IPCClient("pipe", {
  reconnect: true,
  reconnectInterval: 5000,
});

⚙️ API Reference

Server

new IPCServer(pipeName: string, options?: {
  password?: string
})
  • Events:

    • listening(pipeName: string)
    • connected(socket)
    • disconnected(socket)
    • error(err: Error)
    • connect()
  • Socket Methods:

    • socket.emit(event: string, data?: any)
    • socket.on(event: string, handler: Function)
    • socket.broadcast(event: string, data?: any)
    • socket.disconnect()

Client

new IPCClient(pipeName: string, options?: {
  name?: string,
  reconnect?: boolean,
  reconnectInterval?: number,
  password?: string
})
  • Events:

    • connected(socket)
    • disconnected(socket)
    • error(err: Error)
    • connect()
    • disconnect()
  • Socket Methods:

    • socket.emit(event: string, data?: any)
    • socket.on(event: string, handler: Function)

📜 License

MIT © Ajay o s


🙌 Contributions & Feedback

Contributions, issues, and feature requests are welcome! Please open issues or pull requests on the GitHub repository.


Thank you for using ipc-eventer! Happy IPC’ing! 🚀