我正在使用node-machine-id包1.1.10和electron.js 1.7.9,反应16.2。 我的操作系统是Windows 10。 我想要获得机器ID,但它没有工作。
import {machineId, machineIdSync} from 'node-machine-id';
let id = machineIdSync();
但它现在显示错误
Failed to compile.
Error in ./~/node-machine-id/dist/index.js
Module not found: 'child_process' in G:\electron-with-create-react-app-master\EXO\node_modules\node-machine-id\dist
@ ./~/node-machine-id/dist/index.js 1:82-106 1:18078-18102
我无法解决这个问题。 请联系我并帮助我。 田阳
答案 0 :(得分:0)
未找到模块:' child_process'
此错误似乎表明您在渲染器进程中运行此错误。 child_process
是一个节点模块,只能从主进程访问。渲染器进程只能访问标准的面向Web的模块。