bandwidth-monitor
Advanced tools
Comparing version 1.0.1 to 1.0.2
const BandwidthMonitor = require('.'); | ||
const b = new BandwidthMonitor(); | ||
const b = new BandwidthMonitor({disableIPv6:true,interfaces:[ | ||
'en0' | ||
]}); | ||
console.log(Object.keys(b.monitors)); | ||
@@ -4,0 +6,0 @@ setInterval(() => { |
@@ -41,3 +41,3 @@ | ||
this.devices.forEach((device) => { | ||
console.log(device); | ||
// console.log(device); | ||
this.monitors[device.name] = new DeviceMonitor(device); | ||
@@ -44,0 +44,0 @@ }); |
{ | ||
"name": "bandwidth-monitor", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Sorry, the diff of this file is not supported yet
23271
83