basicwifiscanner
v1.0.3
Published
Find all wifi around
Downloads
5
Readme
Basic WiFi Scanner
Description
Basic WiFi Scanner is a JavaScript module that allows you to scan for WiFi networks only LINUX.
Results are given as JSON in this package
***** YOU CAN USE THIS PACKAGE ONLY LINUX *****
Installation
You can install the module using npm. Run the following command:
npm install basicwifiscanner
const wifiScanner = require('basicwifiscanner');
wifiScanner.Scan()
.then((data) => {
console.log('Scan Results:', data);
})
.catch((error) => {
console.error('Error:', error);
});