Loading .vscode/launch.json +1 −9 Original line number Diff line number Diff line { "configurations": [ { "type": "pwa-msedge", "name": "http://localhost:3000", "request": "launch", "url": "http://localhost:3000", "webRoot": "${workspaceFolder}/app/demo" } ] "configurations": [] } .vscode/settings.json +3 −0 Original line number Diff line number Diff line Loading @@ -7,12 +7,14 @@ "autorun", "Backquote", "Bframes", "bootloader", "brotli", "Callout", "Cascadia", "CLSE", "CNXN", "colour", "comlink", "Demuxer", "Deserialization", "DESERIALIZERS", Loading Loading @@ -45,6 +47,7 @@ "Scrcpy", "sendrecv", "sideload", "sideloading", "Sodb", "streamsaver", "struct", Loading libraries/adb-backend-direct-sockets/.eslintrc.cjs→apps/cli/.eslintrc.cjs +0 −0 File moved. View file libraries/adb-backend-direct-sockets/.npmignore→apps/cli/.npmignore +0 −0 File moved. View file apps/cli/README.md 0 → 100644 +31 −0 Original line number Diff line number Diff line # `@yume-chan/adb-cli` This is a Node.js CLI application that mimics the functionality of the `adb` command line tool. It requires a native Google ADB server to be running on the host machine. ## Usage ```txt Usage: tango-cli [options] [command] Options: -H <host> name of adb server host (default: "127.0.0.1") -P <port> port of adb server (default: 5037) -h, --help display help for command Commands: devices [-l] list connected devices (-l for long output) shell [options] [-- <args...>] run remote shell command (interactive shell if no command given). `--` is required before command name. logcat [-- <args...> show device log (logcat --help for more) reboot [bootloader|recovery|sideload|sideload-auto-reboot] reboot the device; defaults to booting system image but supports bootloader and recovery too. sideload reboots into recovery and automatically starts sideload mode, sideload-auto-reboot is the same but reboots after sideloading. usb restart adbd listening on USB tcpip port restart adbd listening on TCP on PORT kill-server kill the server if it is running help [command] display help for command ``` Loading
.vscode/launch.json +1 −9 Original line number Diff line number Diff line { "configurations": [ { "type": "pwa-msedge", "name": "http://localhost:3000", "request": "launch", "url": "http://localhost:3000", "webRoot": "${workspaceFolder}/app/demo" } ] "configurations": [] }
.vscode/settings.json +3 −0 Original line number Diff line number Diff line Loading @@ -7,12 +7,14 @@ "autorun", "Backquote", "Bframes", "bootloader", "brotli", "Callout", "Cascadia", "CLSE", "CNXN", "colour", "comlink", "Demuxer", "Deserialization", "DESERIALIZERS", Loading Loading @@ -45,6 +47,7 @@ "Scrcpy", "sendrecv", "sideload", "sideloading", "Sodb", "streamsaver", "struct", Loading
libraries/adb-backend-direct-sockets/.eslintrc.cjs→apps/cli/.eslintrc.cjs +0 −0 File moved. View file
apps/cli/README.md 0 → 100644 +31 −0 Original line number Diff line number Diff line # `@yume-chan/adb-cli` This is a Node.js CLI application that mimics the functionality of the `adb` command line tool. It requires a native Google ADB server to be running on the host machine. ## Usage ```txt Usage: tango-cli [options] [command] Options: -H <host> name of adb server host (default: "127.0.0.1") -P <port> port of adb server (default: 5037) -h, --help display help for command Commands: devices [-l] list connected devices (-l for long output) shell [options] [-- <args...>] run remote shell command (interactive shell if no command given). `--` is required before command name. logcat [-- <args...> show device log (logcat --help for more) reboot [bootloader|recovery|sideload|sideload-auto-reboot] reboot the device; defaults to booting system image but supports bootloader and recovery too. sideload reboots into recovery and automatically starts sideload mode, sideload-auto-reboot is the same but reboots after sideloading. usb restart adbd listening on USB tcpip port restart adbd listening on TCP on PORT kill-server kill the server if it is running help [command] display help for command ```