1.0.0 • Published 4 years ago

shutdown_system v1.0.0

Weekly downloads
3
License
ISC
Repository
github
Last release
4 years ago

Shutdown_Computer

Run program using sudo or admin premission on Windows Shutdown Computer on any platform.

Install

$ npm install shutdown_computer

Usage

let Shutdown = reuquire("shutdown_computer");
let s = new Shutdown();
async function shutdown() {
  try {
    await s.initShutdown();
  } catch (err) {
    console.error(err);
  }
}

// OR Scheduale the Shutdown
s.schedualeShutdown({ sec: 10, min: 0, hour: 0 });
// You may pass in any combination of the time unit

// For Example
s.schedualeShutdown({ sec: 10, min: 1 });
// OR
s.schedualeShutdown({ hour: 1 });