Socket
Socket
Sign inDemoInstall

connectbox

Package Overview
Dependencies
7
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    connectbox

API wrapper for the Connect Box (modem/router)


Version published
Weekly downloads
1
decreased by-80%
Maintainers
1
Install size
1.25 MB
Created
Weekly downloads
 

Readme

Source

ConnectBox API

npm version

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);

Keywords

FAQs

Last updated on 02 Jan 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc