New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

adb-cli

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

adb-cli

a nodejs wrapper for adb to enable multi device support

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

What ?

adb-cli is a nodejs wrapper for ADB (Android Debug Bridge) to enable multi device support.

How to get ?

npm install adb-cli -g

How to use ?

@command line

adb-cli //for adb help

adb-cli command  //example: adb-cli get-serialno to get serialno of connected phones
adb-cli program  //example: abd-cli cordova.bat launch to launch cordova app on all connected phones (windows)

@your NodeJS Project:

var adb_cli = require('adb-cli');

    //do a adb call
    adb_cli.call({
        command : 'your adb command',
        program : 'or your program'
    });

    //get connected phones as array
    adb_cli.getPhones();

Keywords

FAQs

Package last updated on 04 Jun 2013

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