@metaluna/bowyer
v0.1.1
Published
Node.js API to access your local network Archer VR600v router.
Downloads
4
Maintainers
Readme
@metaluna/bowyer
Node.js API to access your local network Archer VR600v router.
Install
$ npm install @metaluna/bowyer
Usage
const Bowyer = require("@metaluna/bowyer");
const bowyer = new Bowyer('secret_webui_password');
bowyer.getWifiDevices().then(devices => {
console.log(devices);
});
// => [{
// "IPAddress": "10.0.0.100",
// "addressSource": "DHCP",
// "leaseTimeRemaining": "-1",
// "MACAddress": "AA:BB:CC:DD:EE:FF",
// "hostName": "Unknown",
// "X_TP_ConnType": "3",
// "active": "1"
// }, {
// "IPAddress": "10.0.0.101",
// "addressSource": "DHCP",
// "leaseTimeRemaining": "82349",
// "MACAddress": "11:22:33:44:55:66",
// "hostName": "device1",
// "X_TP_ConnType": "0",
// "active": "0"
// }]