Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

devicestack

Package Overview
Dependencies
Maintainers
1
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

devicestack - npm Package Compare versions

Comparing version 1.8.3 to 1.8.4

16

index.js

@@ -26,3 +26,5 @@ var index;

index.SerialDeviceGuider = require('./lib/serial/deviceguider');
} catch(e) { }
} catch(e) {
console.log(e.message);
}

@@ -33,10 +35,16 @@ try {

index.EventedFtdiDeviceLoader = require('./lib/ftdi/eventeddeviceloader');
} catch(e) { }
} catch(e) {
console.log(e.message);
}
try {
index.FtdiSerialDevice = require('./lib/ftdiserial/device');
} catch(e) { }
} catch(e) {
console.log(e.message);
}
try {
index.UsbDeviceLoader = require('./lib/usb/deviceloader');
} catch(e) { }
} catch(e) {
console.log(e.message);
}

@@ -10,3 +10,5 @@ var EventEmitter2 = require('eventemitter2').EventEmitter2,

pm = require('pm-notify');
} catch(e) {}
} catch(e) {
console.log(e.message);
}
}

@@ -13,0 +15,0 @@

@@ -29,3 +29,8 @@ var FtdiDeviceLoader = require('./deviceloader'),

if (!monitor) {
monitor = require('usb-detection');
try {
monitor = require('usb-detection');
} catch(e) {
console.log(e.message);
throw e;
}
}

@@ -32,0 +37,0 @@

@@ -37,3 +37,8 @@ var SerialDeviceLoader = require('./deviceloader'),

if (!monitor) {
monitor = require('usb-detection');
try {
monitor = require('usb-detection');
} catch(e) {
console.log(e.message);
throw e;
}
}

@@ -40,0 +45,0 @@

@@ -91,3 +91,8 @@ var DeviceLoader = require('../deviceloader'),

if (!monitor) {
monitor = require('usb-detection');
try {
monitor = require('usb-detection');
} catch(e) {
console.log(e.message);
throw e;
}
}

@@ -94,0 +99,0 @@

{
"name": "devicestack",
"version": "1.8.3",
"version": "1.8.4",
"description": "This module helps you to represent a device and its protocol.",

@@ -5,0 +5,0 @@ "private": false,

@@ -55,3 +55,3 @@ <pre>

## Prototype hirarchy
## Prototype hierarchy

@@ -844,2 +844,6 @@ Device -> SerialDevice -> FtdiSerialDevice

## v1.8.4
- print some error messages
## v1.8.3

@@ -846,0 +850,0 @@

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc