1.3.8 • Published 8 years ago

node_wpa_cli v1.3.8

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

Node WPA CLI

An event-oriented library to interact with wpa_supplicant. The aim of the project is to offer a simple interface to control your wifi antenna(s) through Node.JS, by supporting all the 'offical' command line interface commands. I'll start adding most of the p2p commands first.

Example

var WpaState = require('node_wpa_cli')
new WpaState('wlan0')
.on('state', function (state) {
	if (state == 'completed') {
		console.log('internet')
	} else if (state == 'disconnected') {
		console.log('no internet')
	}
})
.connect()

License

MIT

1.3.8

8 years ago

1.3.7

8 years ago

1.3.6

8 years ago

1.3.5

8 years ago

1.3.4

8 years ago

1.3.3

8 years ago

1.3.2

8 years ago

1.3.1

8 years ago

1.3.0

8 years ago