2015-11-12 21:20:09 +08:00
|
|
|
# powerMonitor
|
2013-08-14 15:43:35 -07:00
|
|
|
|
2016-04-21 15:39:12 -07:00
|
|
|
> Monitor power state changes.
|
2016-04-21 15:35:29 -07:00
|
|
|
|
2016-11-23 11:20:56 -08:00
|
|
|
Process: [Main](../glossary.md#main-process)
|
2016-11-03 10:26:00 -07:00
|
|
|
|
2016-09-16 11:38:32 -07:00
|
|
|
You cannot require or use this module until the `ready` event of the `app`
|
|
|
|
module is emitted.
|
2013-08-14 15:43:35 -07:00
|
|
|
|
2015-08-28 21:37:07 -07:00
|
|
|
For example:
|
2013-08-14 15:43:35 -07:00
|
|
|
|
|
|
|
```javascript
|
2016-09-16 11:38:32 -07:00
|
|
|
const electron = require('electron')
|
|
|
|
const {app} = electron
|
2016-07-25 18:39:25 -07:00
|
|
|
|
2016-05-04 11:59:02 -06:00
|
|
|
app.on('ready', () => {
|
2016-09-16 11:38:32 -07:00
|
|
|
electron.powerMonitor.on('suspend', () => {
|
2016-07-25 18:39:25 -07:00
|
|
|
console.log('The system is going to sleep')
|
|
|
|
})
|
|
|
|
})
|
2013-08-14 15:43:35 -07:00
|
|
|
```
|
|
|
|
|
2015-08-28 21:37:07 -07:00
|
|
|
## Events
|
|
|
|
|
2016-09-16 11:38:32 -07:00
|
|
|
The `powerMonitor` module emits the following events:
|
2015-08-28 21:37:07 -07:00
|
|
|
|
|
|
|
### Event: 'suspend'
|
2013-08-14 15:43:35 -07:00
|
|
|
|
|
|
|
Emitted when the system is suspending.
|
|
|
|
|
2015-08-28 21:37:07 -07:00
|
|
|
### Event: 'resume'
|
2013-08-14 15:43:35 -07:00
|
|
|
|
2013-08-29 16:37:51 +02:00
|
|
|
Emitted when system is resuming.
|
2015-04-14 21:03:58 -07:00
|
|
|
|
2016-03-30 10:55:50 +09:00
|
|
|
### Event: 'on-ac' _Windows_
|
2015-04-14 21:03:58 -07:00
|
|
|
|
|
|
|
Emitted when the system changes to AC power.
|
|
|
|
|
2016-03-30 10:55:50 +09:00
|
|
|
### Event: 'on-battery' _Windows_
|
2015-04-14 21:03:58 -07:00
|
|
|
|
|
|
|
Emitted when system changes to battery power.
|