admin管理员组

文章数量:1429931

I am making an electron app and wonder how I can automatically log out the user after being inactive for lets say 15 minutes! Thanks a lot!

const electron = require('electron');
const app = electron.app;

let willQuitApp = false;
let window;

app.on('ready', () => {
  window = new electron.BrowserWindow();

  window.on('close', (e) => {
    if (willQuitApp) {
    window = null;
   } else {
      /* the user only tried to close the window */
    e.preventDefault();
    window.hide();
   }
  });

  window.loadURL(`mypage`); /* load your page */

});
app.on('activate', () => window.show());

app.on('before-quit', () => willQuitApp = true);

I am making an electron app and wonder how I can automatically log out the user after being inactive for lets say 15 minutes! Thanks a lot!

const electron = require('electron');
const app = electron.app;

let willQuitApp = false;
let window;

app.on('ready', () => {
  window = new electron.BrowserWindow();

  window.on('close', (e) => {
    if (willQuitApp) {
    window = null;
   } else {
      /* the user only tried to close the window */
    e.preventDefault();
    window.hide();
   }
  });

  window.loadURL(`mypage`); /* load your page */

});
app.on('activate', () => window.show());

app.on('before-quit', () => willQuitApp = true);
Share Improve this question asked Aug 15, 2016 at 18:45 javascript2016javascript2016 1,0134 gold badges20 silver badges41 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 4

If you're interested in idle time in your app specifically then this has been previously answered. On the other hand if you're interested in system idle time then you'll want to use https://github./paulcbetts/node-system-idle-time

Look at Electron Power monitor API's and implement an Interval function to check if time is more than 15 minutes then log out user

const {powerMonitor} = require('electron'); 
const idle = powerMonitor.getSystemIdleTime() // it returns in seconds when I am writing this
console.log('Current System Idle Time - ', idle); 

本文标签: javascriptElectron App How to automatically log out a user after inactivity for 15 minutesStack Overflow