wirelesser
TypeScript icon, indicating that this package has built-in type declarations

2.2.0 • Public • Published

Wirelesser

NPM version Downloads

A wifi utils to control wpa_supplicant

Installation

npm install wirelesser --save

Pre-requirements

sudo apt-get install -y hostapd dnsmasq haveged

Note

This only works on linux, tested on ubuntu 14.4 and debian jesse. you need to have wpa_supplicant installed , run using sudo and running with wpa_spplicant having config : ctrl_interface=/var/run/wpa_supplicant

Reference

http://w1.fi/wpa_supplicant/devel/ctrl_iface_page.html

Examples

Example: Wifi Connection

const {Wireless} = require('wirelesser');
const wireless = new Wireless();
 
wireless.open().then(() => {
  return wireless.connect('ssid', 'password').then(result => {
    console.log(result);
  });
}).then(() => wireless.close());

More Examples

More examples are here

Test

  • Setup a host access point.
  • Run npm test in sudo.
sudo SSID="ssid" PASS="password" npm test

License

MIT © Yuan Tao

Package Sidebar

Install

npm i wirelesser

Weekly Downloads

14

Version

2.2.0

License

ISC

Unpacked Size

112 kB

Total Files

29

Last publish

Collaborators

  • bitt