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

@p4d/huawei-router

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@p4d/huawei-router

Module for communicating with the Huawei Mobile Router API (model E5377Bs-508).

  • 2.0.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

Router

NodeJS connector to Huawei Mobile Router (E5377Bs-508) API

Features

  • Extract statistics

Installing

Using npm:

$ npm install @p4d/huawei-router

Example

Included example.js file with usage demo.

  • Require the object
var router = require('@p4d/huawei-router')
  • Set the username, password and host (admin/admin / 192.168.8.1 by default)
router.setUsername('adminUser')
router.setPassword('adminPassword')
router.setHost('192.168.9.1')
  • All data extraction methods are based on Promises:
router.getStatus().then((data) => {
	console.log("MODEM STATUS")
	console.log(data)
})

router.getTrafficStats().then((data) => {
	console.log("TRAFFIC STATS")
	console.log(data)
})

router.getMonthStats().then((data) => {
	console.log("MONTH STATS")
	console.log(data)
})

router.getNetwork().then((data) => {
	console.log("NETWORK DATA")
	console.log(data)
})

router.getSmsCount().then((data) => {
	console.log("SMS COUNT")
	console.log(data)
})

router.getWlanClients().then((data) => {
	console.log("WLAN CLIENTS")
	console.log(data)
})

router.getNotifications().then((data) => {
	console.log("NOTIFICATIONS")
	console.log(data)
})

FAQs

Package last updated on 08 Sep 2017

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