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

coakka-logger-electron

v1.2.6

Published

Electron main-process intent bridge for the CoAkka logger

Readme

CoAkka Logger For Electron

This package is the Electron main-process intent bridge for CoAkka logger.

New To CoAkka

CoAkka is a native-backed runtime and logger toolkit for application-owned work. The Electron logger package keeps renderer JavaScript on an intent API while the Electron main process owns native logger lifecycle, bounded queueing, drain, and counters.

Use these public repositories to orient first:

| Repository | Use it for | Link | | --- | --- | --- | | coakka-samples | Runnable examples and code you can inspect first. | https://github.com/phuong-tran/coakka-samples | | coakka-publish | Released packages, native archives, manifests, checksums, compatibility matrix, and release notes. | https://github.com/phuong-tran/coakka-publish |

Run the matching sample:

git clone https://github.com/phuong-tran/coakka-samples.git
cd coakka-samples
bash run.sh logger electron basic

No-checkout npm smoke: https://github.com/phuong-tran/coakka-samples/blob/main/docs/first-npm-smoke.md

Samples docs directory: https://github.com/phuong-tran/coakka-samples/tree/main/docs

The boundary is intentionally strict:

  • renderer JavaScript sends a log intent through ipcRenderer.invoke
  • preload exposes only a small coakkaLogger.log(...) API
  • the Electron main process owns ElectronLoggerIntentBridge
  • the main process submits the log record and projects counters back to the renderer

Renderer code does not import the logger connector, does not own native logger lifecycle, and does not need a native library path in the normal path.

Main Process

import { ipcMain } from "electron";
import {
  ElectronLoggerIntentBridge,
  registerElectronLoggerIpcHandler,
} from "coakka-logger-electron";

const bridge = ElectronLoggerIntentBridge.start({
  systemName: "electron-app-logger",
});

registerElectronLoggerIpcHandler(ipcMain, bridge);

Preload

const { contextBridge, ipcRenderer } = require("electron");
const { createCoAkkaLoggerPreloadApi } = require("coakka-logger-electron/preload");

contextBridge.exposeInMainWorld("coakkaLogger", createCoAkkaLoggerPreloadApi(ipcRenderer));

Renderer

const result = await window.coakkaLogger.log({
  intentId: "log-1",
  source: "electron-renderer",
  level: "info",
  category: "app.orders",
  message: '{"event":"accepted"}',
  awaitDrainMs: 1000,
});

Smoke

npm run build
bash scripts/smoke-packaged-package.sh