Get active window title in Node.js.
Compatible with Linux, Windows 7+, and OSX;
var monitor = require('active-window');
callback = function(window){
try {
console.log("App: " + window.app);
console.log("Title: " + window.title);
}catch(err) {
console.log(err);
}
}
/*Watch the active window
@callback
@number of requests; infinity = -1
@interval between requests
*/
//monitor.getActiveWindow(callback,-1,1);
//Get the current active window
monitor.getActiveWindow(callback);
MIT