LukaszWiktor / node-wifi

NodeJS tool to manage wifi (connections, scans)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

node-wifi

The node-wifi module allows mac, windows and linux users to interact with surrounding wifi networks through various methods.

These methods include scanning for wifi access points and connecting to these access points.

We wish to be clear in saying that this module is inspired from node-wifi-control but with some slight modifications to certain functions such as the various OS-specific parsers for terminal output as we noticed that these parsers did not work well on certain operating systems.

The module manages :

  • Connect for linux
  • Scan for linux
  • Disconnect for Linux
  • List the current wifi connections for Linux
  • Connect for mac
  • Scan for mac
  • List the current wifi connections for mac
  • Connect for windows
  • Scan for windows

As everything with hardware dependency, weird behaviors may happen depending of your configuration. You should never hesitate to notify us about a specificity of your OS/Hardware/Wifi card/whatever.


Install

// Use as a module
npm install node-wifi

// Use as a CLI
npm install node-wifi -g

Getting started

var wifi = require('node-wifi');

// Initialize wifi module
// Absolutely necessary even to set interface to null
wifi.init({
    iface : null // network interface, choose a random wifi interface if set to null
});

// Scan networks
wifi.scan(function(err, networks) {
    if (err) {
        console.log(err);
    } else {
        console.log(networks);
        /*
        networks = [
            {
                ssid: '...',
                mac: '...',
                frequency: <number>, // in MHz
                signal_level: <number>, // in dB
                security: '...' // unfortunately the format still depends of the OS
            },
            ...
        ];
        */
    }
});

// Connect to a network
wifi.connect({ ssid : "ssid", password : "password"}, function(err) {
    if (err) {
        console.log(err);
    }
    console.log('Connected');
});

// Disconnect from a network
// not available on all os for now
wifi.disconnect(function(err) {
    if (err) {
        console.log(err);
    }
    console.log('Disconnected');
});

// Disconnect from a network
// not available on all os for now
wifi.getCurrentConnections(function(err, currentConnections) {
    if (err) {
        console.log(err);
    }
    console.log(currentConnections);
    /*
    // you may have several connections
    [
        {
            iface: '...', // network interface used for the connection, not available on macOS
            ssid: '...',
            mac: '...',
            frequency: <number>, // in MHz
            signal_level: <number>, // in dB
            security: '...' // not available on linux
        }
    ]
    */
});

Use as CLI

wifi --scan

wifi --connect --ssid <ssid> --password <password> [--iface <wlan0>]

wifi --disconnect

wifi --current

Dependencies

Linux:

  • network-manager

About

NodeJS tool to manage wifi (connections, scans)

License:GNU General Public License v3.0


Languages

Language:JavaScript 100.0%