adbkit icon indicating copy to clipboard operation
adbkit copied to clipboard

A pure Node.js client for the Android Debug Bridge.

Results 73 adbkit issues
Sort by recently updated
recently updated
newest added

NodeJS version: 12.22.12 GraphicsMagick version: 1.3.36 Source Code: ```javascript const adb = require('adbkit'); const client = adb.createClient(); client .listDevices() .then(function (devices) { devices.forEach((device) => { client.framebuffer(device.id, 'jpeg', (err, data) =>...

Hi there. As you know `openstf/adbkit` is not maintained anymore. If you have a project that uses `adbkit`, please have a look [here](https://github.com/DeviceFarmer/adbkit/issues/266). I have prepared adbkit version written in...

My source code like bellow: var adb = require('adbkit') var client = adb.createClient('localhost', '5037', adbbinarytool ) client.trackDevices() .then(function(tracker) { tracker.on('add', function(device) { console.log('Device %s was plugged in', device.id) }) tracker.on('remove',...

So I have this code: ``` return client.screencap(device.id) .then(function(stream) { // Well, what now? }); ``` What can I do with the object I get after calling screencap?

use cmd run shell ,program can start more then 1 hour use adbkit program can only start 10 minutes

Hello, I got the github issue report that node-forge in adbkit needs to version up due to follow. [CVE-2020-7720](https://github.com/advisories/GHSA-92xj-mqp7-vmcj) Vulnerable versions: < 0.10.0 Patched version: 0.10.0 The package node-forge before...

please add transfer object like on push/pull processes to instaling

When I push directory I need recursively creating folders, but mkdir by shell cmd created many delays. Please add sync.mkdir command

I set up a adbkit environment on my local PC, there are three devices in my adb connect: ![image](https://user-images.githubusercontent.com/16631352/64484433-6d027f00-d244-11e9-83c1-1175a39e7119.png) Actually,8B2Y0T3LX and localhost:54321 are one device. When I run ``` adb...