0.0.1 • Published 4 years ago

aiot-adb v0.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
4 years ago

adb tools

  • Support windows, MAC, Linux (Ubuntu) system.
  • Easy to use.
  • Containing binary ADB file

Install

  • npm install node-adb -save

Sample code

var adb = require('node-adb');
adb({
    cmd: ['devices']
},function(result){
    // code
});
var adb = require('node-adb');
adb({
    deviceID: 'abc',
    cmd: ['shell', ' cat', '/etc/hosts']
},function(result){
    // code
});
0.0.1

4 years ago