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

@flyingchangescode/dev-feedback-electron

v0.2.0

Published

Local feedback inspector for Electron development builds

Downloads

116

Readme

@flyingchangescode/dev-feedback-electron

@flyingchangescode/dev-feedback-electron adds an explicit Element inspector, local History, and a plain-text Copy History action to an Electron development build.

The Host App keeps ownership of its windows and preload. The package owns its session preload, shortcut, DOM selection, Capture Record validation, app-local storage, and in-app History panel.

Install

Install the development dependency from npm:

npm install --save-dev @flyingchangescode/dev-feedback-electron

Add this one line to the Electron main-process entry before creating any windows:

if (!app.isPackaged) await import('@flyingchangescode/dev-feedback-electron/register')

That is the complete Host App integration. In a CommonJS entry, use:

if (!app.isPackaged) require('@flyingchangescode/dev-feedback-electron/register')

Run the app and press Cmd/Ctrl+Shift+. in the window you want to inspect. The package appends its own preload without replacing existing session preloads and works across windows created after registration. It does not expose ipcRenderer or a new global to the Host App renderer. Keep sandbox: true, contextIsolation: true, and nodeIntegration: false.

The guard is deliberate. Packaged production builds do not register the inspector, and a production package can omit this development dependency.

Trust contract

  • Capture starts only when the developer presses Cmd/Ctrl+Shift+. in a registered Host App window.
  • V1 captures one explicitly selected DOM element, its safe accessibility and feature signals, its rectangle, and the user's note.
  • It does not collect broad parent text, source files, local paths, terminal buffers, build logs, existing clipboard contents, or network data.
  • History stays under Electron userData.
  • Copy History puts a readable Markdown summary on the clipboard only after the user clicks it. Paste it into any Codex task, issue, or document.
  • Region capture, direct MCP transport, cloud sync, and Chrome extension loading are not part of V1.

Maintainer release

From the repository root, install the locked toolchain and verify the package before publishing:

npm ci
npm test
npm run check
cd packages/electron-inspector
npm pack --dry-run
npm publish --access public