UNPKG

homebridge-netgear-readynas

Version:

Remote control of ReadyNAS with Homebridge

10 lines (7 loc) 207 B
const { execSync } = require('child_process'); function wakeup(mac) { const command = `wakeonlan ${mac}`; const output = execSync(command); return output.toString(); } module.exports = wakeup;