Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 554 Bytes

README.md

File metadata and controls

34 lines (21 loc) · 554 Bytes

power-control

Simple cross-platform Node.js module that provides power off and restart functionality.

Features

  • Lightweight
  • No dependencies
  • Cross-platform: Linux, macOS, Windows and FreeBSD

Install

npm install --save power-control

Usage

Note: Your application needs to be run with appropriate permissions for the commands to be successful.

var powerControl = require('power-control');

// Power off system
powerControl.powerOff();

// Restart system
powerControl.restart();

License

MIT