New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

adb-devices-emitter

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

adb-devices-emitter

a tool to track devices

0.1.9
latest
npm
Version published
Weekly downloads
1.7K
7.4%
Maintainers
1
Weekly downloads
 
Created
Source

adb-devices-emitter

tested with jest code style: prettier

Track insertion device status

Examples

add event listener deviceAdded deviceRemoved

const devicesEmitter = require('adb-devices-emitter')

devicesEmitter.on('deviceAdded', ({ sn }) => {
  console.log('deviceAdded sn:', sn)
})

devicesEmitter.on('deviceRemoved', ({ sn }) => {
  console.log('deviceRemoved sn:', sn)
})

devicesEmitter.start()

stop

const devicesEmitter = require('adb-devices-emitter')

devicesEmitter.on('deviceAdded', ({ sn }) => {
  console.log('deviceAdded sn:', sn)
})

devicesEmitter.on('deviceRemoved', ({ sn }) => {
  console.log('deviceRemoved sn:', sn)
})

devicesEmitter.start()

setTimeout(() => {
  console.log('stop')
  devicesEmitter.stop()
}, 100000)

FAQs

Package last updated on 27 May 2020

Did you know?

Socket

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.

Install

Related posts