0.2.0 • Published 8 years ago

netshd v0.2.0

Weekly downloads
26
License
IVS
Repository
github
Last release
8 years ago

netshd is a wrapper around netsh windows tool for managing network.

Initial features :

  • scan available wifi networks

Example :

var netshd = require("netshd");

var nd = new netshd();
var prefered = "FreeWifi";


nd.addEvent('wifiFound', function(infos) {
  console.log("new wifi found : " + infos.ssid);
});

nd.addEvent('wifiLost', function(infos) {
  console.log("wifi lost : " + infos.ssid);
});


setInterval(function(){
  console.log("Prefered SSID %s is %s", prefered, nd.isWLANAvailable(prefered));
}, 1000);

nd.start();

setTimeout(nd.stop, 10 * 1000);
0.2.0

8 years ago

0.1.4

9 years ago

0.1.3

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago