Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Use adb from node
#Requirements
#Install
npm install --save adbjs
#Build
git clone https://github.com/Urucas/adbjs.git
npm run build
#Usage
import ADB from 'adbjs'
let adb = new ADB()
// Getting adb version
let version = adb.version()
console.log(version)
// Android Debug Bridge version 1.0.32
// Getting devices
let devices = adb.devices()
console.log(devices)
// [ '07042e0e13cca2d0' ]
let deviceInfo = adb.deviceInfo(devices[0])
console.log(deviceInfo)
// { id: '07042e0e13cca2d0', model: 'Nexus 5', version: '5.1.1' }
// select device
adb.selectDevice(devices[0])
// check if device is available
let isAvailable = adb.isDeviceAvailable('07042e0e13cca2d0')
console.log(isAvailable)
// true
// list installed packages
let packages = adb.listPackages()
/*
* [ 'com.skype.raider',
* 'com.google.android.youtube',
* 'com.android.providers.telephony',
* 'com.google.android.gallery3d',
* ...
* 'com.google.android.inputmethod.latin' ]
*/
// check if a package is installed
let isInstalled = adb.isPackageInstalled("com.urucas.zoster_testpp")
console.log(isInstalled)
// false
// check if package is currently running
let isRunning = adb.isAppRunning("com.google.android.youtube")
console.log(isRunning)
// true
// close a application running
adb.closeApp("com.google.android.youtube")
// install a package
adb.install("/path/to/my/zoster_testapp.apk", "com.urucas.zoster_testapp")
// get wlan0 ip
let ip = adb.getDeviceWlan0()
console.log(ip)
// 192.168.0.105
// connect a device via tcpip
let conn = adb.tcpConnect()
console.log(conn)
// 192.168.0.105:5555
// disconnect device
adb.tcpDisconnect(conn)
// lock device
adb.lock()
// unlock device
adb.unlock()
// get information about the power display
let power = adb.power()
console.log(power)
// { display_power: 'ON', "battery_level": 93 }
Using adbjs to monitor a device changes
let monitor = adb.monitor()
// emits an event on battery change
monitor.on("battery", (power) => {
// { display_power: 'ON', "battery_level": 93 }
// { display_power: 'ON', "battery_level": 92 }
// you may integrate this monitor to slack,
// so if battery is to low send a notification
// { display_power: 'ON', "battery_level": 5 }
})
// emits an event on display changes [ON|OFF]
monitor.on("display", (power) => {
// { display_power: 'ON', "battery_level": 93 }
// { display_power: 'OFF', "battery_level": 93 }
})
FAQs
Call adb methods from node
The npm package adbjs receives a total of 18 weekly downloads. As such, adbjs popularity was classified as not popular.
We found that adbjs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.