You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

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


Version published
Weekly downloads
1.3K
decreased by-16.46%
Maintainers
1
Install size
6.94 MB
Created
Weekly downloads
 

Readme

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc