如何在 Electron 中获取系统信息?

How to get the system information in Electron?

我需要获取 Electron 中多平台的系统信息。如何获取Electron中的系统信息?

查看此页面 https://nodejs.org/api/os.html。它是 nodejs 文档,但由于 electron 和 node 非常相似,所以它可以工作。

var os = require('os');

不过是您要找的东西。