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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@hysc/boom-cpp-plugin

v1.4.0

Published

```markdown 使用示例,展示如何在 Electron 主进程中集成和使用该插件,使用 CommonJS 的引用方式:

Downloads

251

Readme

文件说明

使用示例,展示如何在 Electron 主进程中集成和使用该插件,使用 CommonJS 的引用方式:

```javascript
const { app, BrowserWindow, ipcMain } = require('electron');
const CppPluginBridge = require('@hysc/boom-cpp-plugin');

let mainWindow;
let mCppPlugin;

app.on('ready', () => {
    mainWindow = new BrowserWindow({
        width: 800,
        height: 600,
        webPreferences: {
            nodeIntegration: true,
            contextIsolation: false,
        },
    });

    mainWindow.loadURL('file://' + __dirname + '/index.html');

    ipcMain.on('start-audio-capture', (event, args) => {
        if (!mCppPlugin) {
            mCppPlugin = new CppPluginBridge();
            mCppPlugin.bindTargetWindow(mainWindow);
            mCppPlugin.init();
            mCppPlugin.setAudioPluginEventCallback((audioData) => {
                console.log('Received audio data:', audioData);
            });
        }
        mCppPlugin.startAudioCapture(args.sourceId || 0, args.captureMode || false);
    });

    ipcMain.on('stop-audio-capture', () => {
        if (mCppPlugin) {
            mCppPlugin.destroy();
            mCppPlugin = null;
        }
    });

    ipcMain.on('start-window-detection', (event, args) => {
        if (!mCppPlugin) {
            mCppPlugin = new CppPluginBridge();
            mCppPlugin.bindTargetWindow(mainWindow);
            mCppPlugin.init();
        }
        mCppPlugin.setWinPluginEventCallBack((eventData) => {
            console.log('Window detection event:', eventData);
        });
        mCppPlugin.startWindowDetector(args.sourceId, args.sourceName);
    });

    ipcMain.on('stop-window-detection', () => {
        if (mCppPlugin) {
            mCppPlugin.destroy();
            mCppPlugin = null;
        }
    });
});

app.on('window-all-closed', () => {
    if (mCppPlugin) {
        mCppPlugin.destroy();
        mCppPlugin = null;
    }
    app.quit();
});

在渲染进程中,可以通过 ipcRenderer 发送消息来控制插件:

const { ipcRenderer } = require('electron');

// 开始音频采集
ipcRenderer.send('start-audio-capture', { sourceId: 0, captureMode: false });

// 停止音频采集
ipcRenderer.send('stop-audio-capture');

// 开始窗口检测
ipcRenderer.send('start-window-detection', { sourceId: 'window:12345', sourceName: 'MyWindow' });

// 停止窗口检测
ipcRenderer.send('stop-window-detection');

以上代码展示了如何初始化插件、绑定窗口、启动音频采集和窗口检测等功能。