如何使 npm 包作为电子应用程序的命令可用

How to make npm package available as a command to electron application

我在开发电子应用程序时遇到的一个奇怪问题。我想要实现的是使用 lighthouse 进行页面审核。我像这样以编程方式使用它

const command = `lighthouse ${website} --quiet --chrome-flags=--headless --output-path=${outputPath}   --output html --emulated-form-factor=${strategy}  --only-categories=${options}`;

os.execCommand(command, function() {
      res.send(response);
});

它的作用是在主线程 (nodejs) 中执行一个 lighthouse 作为命令。我已经提到 lighthouse 作为 package.json 中的依赖项,它在 development 模式下完美运行。

奇怪的是,当创建包时它给我一个错误 lighthouse is not a recognized command

如何解决这种依赖关系?或提供来自 node_modules>

的命令路径

敬请指导。 PS:无法使用 require 将灯塔用作模块。此外,这是一个在内部托管此服务的独立应用程序。

您可以将 lighthouse 安装为全局依赖项。如果您不想这样做,请使用 npm bin 获取 npm 将安装可执行文件的文件夹。然后,使用灯塔的绝对路径。 解释如何做得更好。

你可以通过 npx 启动子进程和 运行 灯塔吗 允许 npx 解决依赖 space 而不是依赖 os

const {app, BrowserWindow} = require('electron')
const childproc = require('child_process')
const path = require('path')

function createWindow () {
  // Create the browser window.
  const mainWindow = new BrowserWindow({
    width: 800,
    height: 600,
    webPreferences: {
      preload: path.join(__dirname, 'preload.js')
    }
  })

  // and load the index.html of the app.
  mainWindow.loadFile('index.html')

  // Open the DevTools.
  mainWindow.webContents.openDevTools()
}


app.whenReady().then(() => {
  createWindow()
  
  app.on('activate', function () {
    if (BrowserWindow.getAllWindows().length === 0) createWindow()
  })
})

app.on('window-all-closed', function () {
  if (process.platform !== 'darwin') app.quit()
})

const child = childproc.spawn(
  'npx',
  [
    'lighthouse',
    `${website}`,
    `--quiet`,
    `--chrome-flags=--headless`,
    `--output-path=${outputPath}`,
    `--output`,
    `html`,
    `--emulated-form-factor=${strategy}`,
    `--only-categories=${options}`
  ],
)

child.on('exit', function (code, signal) {
  console.log(
    'child process exited with ' + `code ${code} and signal ${signal}`
  )
})

child.on('error', (err) => {
  console.log(err)
})


child.stdout.on('data', (data) => {
  console.log(data.toString())
})

child.stderr.on('data', (data) => {
  console.error(`child stderr:\n${data}`)
})

不太确定您的整个设置,但在本地使用启动器和 运行 lighthouse 构建了这个示例...

$ npm start

> electron-quick-start@1.0.0 start 
> electron .

child stderr:
Please provide a url

child stderr:

Specify --help for available options

child process exited with code 1 and signal null