Initial commit

This commit is contained in:
Christian Kuster
2016-04-04 20:01:15 +02:00
parent 7b85575b85
commit 1fa96c3ed7
16 changed files with 1809 additions and 0 deletions

16
bin/scan Executable file
View File

@ -0,0 +1,16 @@
#!/usr/bin/env node
/**
* Scans for Wifi networks
* Created by kc on 04.04.16.
*/
var scanner = require('../index');
scanner.scan((err, output) => {
if (err) {
console.error(err);
return;
}
console.log(output);
});