Skip to content

Instantly share code, notes, and snippets.

View saravanan10393's full-sized avatar
🎯
Focusing

Saravanan Ramupillai saravanan10393

🎯
Focusing
View GitHub Profile
var spawn = require('child_process').spawn;
wifiNetworksRSSI(function(err, data, raw) {
if (!err) {
console.log(data); // formatted data with SSID, BSSID, RSSI
// console.log(raw); // raw output from netsh
} else {
console.log(err);
}
});