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

@oranix/quiver-electron

v0.1.0

Published

Quiver crash reporting for Electron apps — main + renderer, Crashpad minidumps auto-uploaded and symbolicated server-side.

Readme

@oranix/quiver-electron

Crash reporting for Electron apps, backed by Quiver.

Electron's built-in Crashpad captures native minidumps for both the main and renderer processes and uploads them straight to Quiver, where they're stored as crash tickets and symbolicated server-side against your uploaded Breakpad symbols. This SDK wires that up, adds renderer/child-process crash listeners, and manages a crash scope (user / tags / extra / breadcrumbs) that rides along on the next dump.

The SDK has two entry points, like @sentry/electron: one for the main process and one for the renderer.

Install

npm install @oranix/quiver-electron

electron is a peer dependency (provided by your app).

Main process

Call init() once, before the app is ready:

import { app } from "electron";
import * as Quiver from "@oranix/quiver-electron/main";

Quiver.init({
  appSlug: "my-desktop-app",     // your Quiver app slug
  clientKey: "qk_live_...",      // public client key (safe to ship)
  release: app.getVersion(),     // version_name (defaults to app.getVersion())
  versionCode: 1020300,          // Quiver version_code → picks the symbol set
  environment: "stable",         // channel
  extra: { deployment: "ga" },   // static annotations on every crash
  onCrash: (info) => {
    // renderer / child-process termination (incl. oom / killed, which produce
    // no minidump) — log, show a dialog, etc.
    console.warn("process gone:", info.processType, info.reason);
  },
});

// Attach context that rides along on the next crash:
Quiver.setUser({ id: "u_123", email: "[email protected]" });
Quiver.setTag("feature", "editor");
Quiver.setExtra("open_docs", 3);
Quiver.addBreadcrumb({ message: "opened project", category: "ui" });

Renderer process

Renderer crashes are captured by the main-process Crashpad automatically — the renderer entry only manages scope and forwards it to main over IPC:

import * as Quiver from "@oranix/quiver-electron/renderer";

Quiver.setTag("route", location.pathname);
Quiver.addBreadcrumb({ message: "clicked export" });

For sandboxed renderers (contextIsolation: true), expose the API from your preload script instead:

// preload.ts
import { exposeQuiver } from "@oranix/quiver-electron/preload";
exposeQuiver(); // → window.quiver.setTag(...), window.quiver.addBreadcrumb(...)

Symbols (server-side symbolication)

Minidumps only become readable stacks when Quiver has your app's Breakpad symbols for that version_code. In CI, generate them with dump_syms and upload alongside the release:

# produce .sym files for your app + Electron framework binaries
dump_syms path/to/MyApp > syms/MyApp.sym
# … repeat per binary, then zip them (flat is fine — Quiver reads each
#    file's MODULE header to place it correctly) …
zip -r symbols.zip syms/

quiver builds publish-electron my-desktop-app \
  --version-name 1.2.3 --version-code 1020300 \
  --installer dist/MyApp-1.2.3.exe \
  --symbols symbols.zip

Once symbols are present, each crash ticket gets a symbolicated stack posted as a comment. Without symbols, Quiver still records the crash with module+offset frames.

What gets sent

Every minidump carries a Sentry-electron-style annotation set the server folds into the ticket: product_type=electron, version, version_code, environment/channel, platform, arch, process_type, electron_version, chrome_version, plus any extra and the current user/tags/breadcrumbs.