Cross-platform USB device metadata and events.
- OSX
- Windows
Linux(Planned)
- Node.js v0.12.x
npm install usb-driver
var usbDriver = require('usb-driver');
Use getAll()
:
usbDriver.getAll().then(function(devices) {
/* ... do something with devices ... */
}).catch(function(err) { /* ... error handling */ });
devices
is an array of device objects. See
Device Objects, below.
Use get()
:
usbDriver.get(deviceId).then(function(device) {
/* ... do something with device ... */
}).catch(function(err) { /* ... error handling ... */ });
deviceId
is the id
provided in the device objects from
getAll()
, and device
is a resulting device object. See
Device Objects, below.
Use unmount()
:
Note that the promise will be rejected only if a mounted volume could not be unmounted by this invocation. If it's already unmounted, the promise will be resolved.
usbDriver.unmount(deviceId).then(function() {
/* ... success ... */
}).catch(function(err) { /* ... failure ... */ });
deviceId
is the id
provided in the device objects from get()
or
getAll()
. See Device Objects, below.
usbDriver.on('attach', function(device) { /* ... */ });
device
is a device object. See Device Objects, below.
usbDriver.on('detach', function(device) { /* ... */ });
device
is a device object. See Device Objects, below.
When a USB device is mounted.
usbDriver.on('mount', function(device) { /* ... */ });
device
is a device object. See Device Objects, below.
When a USB device is unmounted.
usbDriver.on('unmount', function(device) { /* ... */ });
device
is a device object. See Device Objects, below.
Device objects represent attached USB devices and model the data about them.
Here's an example:
{
id: '0x0a-0x12-IDQFB0023AB', // VID-PID-(SERIAL|INCREMENTED_ID)
vendorCode: '0x0a',
productCode: '0x12',
manufacturer: 'Foo Bar Technologies',
product: 'Baz Sensing Quux',
serialNumber: 'IDQFB0023AB',
mount: '/Volumes/FOOBAR1'
}
REQUIRED, String | Integer
The id is a unique identifier for an attached device. This is made up of the product code, vendor code -- and the serial number, if available. If the serial number is not available, an incremented value is provided as the last component.
REQUIRED, String
The hex for the USB vendor ID.
REQUIRED, String
The hex for the USB product ID.
OPTIONAL, String
The name of the manufacturer/vendor, if available as a USB descriptor.
OPTIONAL, String
The name of the product, if available as a USB descriptor.
OPTIONAL, String
The serial number of the device, if available as a USB descriptor.
OPTIONAL, String
The path to the volume mount point, if mounted.
npm test
See LICENSE