Socket
Book a DemoInstallSign in
Socket

mobile-connect-client

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mobile-connect-client

JavaScript library for interfacing with Mobile Connect demo database.

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

mobile-connect-client

JavaScript library for interfacing with Mobile Connect database.

Usage

const MC = require('mobile-connect-client')
// create client object
const mc = new MC({
  fqdn: 'ccedata.dcloud.cisco.com',
  username: 'sa',
  password: 'C1sco12345'
})

// connect to database
async function run () {
  try {
    await mc.connect()
  } catch (e) {
    throw e
  }
  // then list agents
  const call = await mc.getCall('2142336226')
  console.log(call)
  return
}
run ()

Keywords

cxdemo

FAQs

Package last updated on 08 Feb 2018

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