Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

connectbox

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

connectbox

API wrapper for the Connect Box (modem/router)

  • 1.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
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

Package last updated on 02 Jan 2020

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc