0.6.6 • Published 10 years ago

node-wifi-tools v0.6.6

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

Node Wifi Tools

Utility for Node.js to work with 802.11 interfaces

Installation

You can use node-wifi-tools as either a standalone "executable" or as an npm module.

Module

Install node-wifi-tools into your project.

npm install node-wifi-tools --save

You can now use it in your project.

var co       = require('co')
  , nw_tools = require('node-wifi-tools')
  ;

co(function*() {

  var info = yield nw_tools.get_info();

  console.log(JSON.stringify(info, null, 2));
})();

Standalone

Install node-wifi-tools globally on your system

npm install node-wifi-tools -g

The command node-wifi-tools has been added to your global node_modules/ directory and a link to bin/node-wifi-tools has been added to your $PATH.

Testing

You can run the included test suite with the following command.

npm test

Supported Systems

0.6.6

10 years ago

0.6.5

10 years ago

0.6.4

10 years ago

0.6.3

10 years ago

0.6.2

10 years ago

0.4.2

10 years ago

0.4.1

10 years ago

0.4.0

10 years ago

0.3.2

10 years ago

0.3.1

10 years ago

0.3.0

10 years ago

0.2.0

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago