🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

adb-driver

Package Overview
Dependencies
Maintainers
4
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

adb-driver

A ADB(Android Debugging Bridge) command executor

0.1.8
latest
npm
Version published
Weekly downloads
1.6K
-15.02%
Maintainers
4
Weekly downloads
 
Created
Source

adb-driver

tested with jest code style: prettier

usage

sample1

const adbDriver = require('adb-driver')
const { execADBCommand } = adbDriver

execADBCommand(`adb devices`).then(result => {
  if (result instanceof Error) {
    console.error(`fail to execute adb devices`)
    return
  }
  console.info(`you can parse your devices info here: ${result}`)
})

sample2

const adbDriver = require('adb-driver')
const { execADBCommand } = adbDriver

async function getDevices(callback) {
  const result = await execADBCommand(`adb devices`)
  if (result instanceof Error) {
    console.error(`fail to execute adb devices`)
    return callback(result)
  }
  console.log(`you can parse your devices info here`)
  callback(null, result)
}

FAQs

Package last updated on 25 Feb 2019

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