Package Exports
- connectbox
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (connectbox) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
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';
// creating an ConnectBox object with the ip address of the target
const connectBox = new ConnectBox('192.168.0.1');
// logging in with the "password"
await connectBox.login('password');
// getting the list of all connected devices
const devices = await connectBox.getConnectedDevices();
console.log(devices);