make node.js程序阻止系统进入睡眠模式

时间:2017-04-01 09:59:48

标签: node.js operating-system sleep-mode

我想知道node.js程序/脚本是否有可能阻止操作系统(windows)进入睡眠或休眠模式?

1 个答案:

答案 0 :(得分:1)

这会对你有帮助。

https://www.npmjs.com/package/stay-awake

var stayAwake = require('stay-awake');

// do something not so important 

// prevent auto sleep 
stayAwake.prevent(function(err, data) {
    // handle error 
    console.log('%d routines are preventing sleep', data);
});

// do something which needs the computer to stay awake 

// do something async 
doAsync(function() {
    // do something 
    stayAwake.prevent(function() {}); // second call 
    // do long processing 
    stayAwake.allow(function() {}); // this subroutine no longer needs to prevent sleep 
});

// once done allow the computer to sleep as configured in power management 
stayAwake.allow(function(err, data) {
    if(data == 0) {
        console.log('Will sleep automatically');
    }
}); // allow