node-wol

0.1.1 • Public • Published

Wake on LAN for node.js

This is a fork of (node_wake_on_lan)[https://github.com/agnat/node_wake_on_lan] by (agnat)[https://github.com/agnat]. Credits go to him.

Install via npm install node-wol

Usage

var wol = require('node-wol');
 
wol.wake('20:DE:20:DE:20:DE');
 
wol.wake('20:DE:20:DE:20:DE', function(error) {
  if(error) {
    // handle error
    return;
  }
});
 
var magicPacket = wol.createMagicPacket('20:DE:20:DE:20:DE');

Optional options

  • address (optional ip address)
  • port (optional port; default is 9)
wol.wake('20:DE:20:DE:20:DE', {
  address: '192.168.10.12',
  port: 7
}, function(error) {
  if(error) {
    // handle error
    return;
  }
});

Readme

Keywords

none

Package Sidebar

Install

npm i node-wol

Weekly Downloads

3,546

Version

0.1.1

License

none

Last publish

Collaborators

  • bramvanoploo