ConnectBox API
This package is a simple api wrapper for the web interface of the Connect Box (modem/router provided by ISPs e.g. Unitymedia)
Currently only a couple of the web interface functions are implemented.
Installing
Using npm:
npm i connectbox
Usage
This example shows how to get an unformatted list of all currently connected devices.
import ConnectBox from 'connectbox';
const connectBox = new ConnectBox('192.168.0.1');
await connectBox.login('password');
const devices = await connectBox.getConnectedDevices();
console.log(devices);