power-monitor模块是用来监听能源区改变的.只能在主进程中使用.在 app 模块的 ready 事件触发之后就不能使用这个模块了.
app.on('ready', function() {
require('electron').powerMonitor.on('suspend', function() {
console.log('The system is going to sleep');
});
});
事件
power-monitor
模块可以触发下列事件:
suspend
:在系统挂起的时候触发.resume
:在系统恢复继续工作的时候触发. Emitted when system is resuming.on-ac
:在系统使用交流电的时候触发. Emitted when the system changes to AC power.on-battery
:在系统使用电池电源的时候触发. Emitted when system changes to battery power.
下一节:powerSaveBlocker 模块是用来阻止应用系统进入睡眠模式的,因此这允许应用保持系统和屏幕继续工作.