electron/docs/api/power-monitor.md
2015-08-28 21:37:07 -07:00

37 lines
736 B
Markdown

# power-monitor
The `power-monitor` module is used to monitor power state changes. You can
only use it on the main process. You should not use this module until the `ready`
event of the `app` module is emitted.
For example:
```javascript
var app = require('app');
app.on('ready', function() {
require('power-monitor').on('suspend', function() {
console.log('The system is going to sleep');
});
});
```
## Events
The `power-monitor` module emits the following events:
### Event: 'suspend'
Emitted when the system is suspending.
### Event: 'resume'
Emitted when system is resuming.
### Event: 'on-ac'
Emitted when the system changes to AC power.
### Event: 'on-battery'
Emitted when system changes to battery power.