Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/webadb/webadb.js

ADB host implementation based on WebUSB
https://github.com/webadb/webadb.js

Last synced: about 2 months ago
JSON representation

ADB host implementation based on WebUSB

Awesome Lists containing this project

README

        

## One-stop .js for Android Debug Bridge (adb) over WebUSB

```js
let webusb = await Adb.open("WebUSB");
let adb = await webusb.connectAdb("host::");
let shell = await adb.shell("uname -a");
console.log(await shell.receive());
```

## Install

From NPM:

```
npm install --save webadb
```

From CDN:

```html

```