Comparing version 0.1.0 to 0.2.0
0.2.0 / 2012-03-28 | ||
================== | ||
* Evaluate the prusage struct in pure JavaScript and don't block the event loop. (@mranney) | ||
0.1.0 / 2012-03-28 | ||
================== | ||
* First full full release. | ||
0.0.3 / 2012-03-28 | ||
@@ -3,0 +13,0 @@ ================== |
{ | ||
"name": "proc", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"description": "Expose system state via the /proc file system.", | ||
"author": "Daniel D. Shaw <dshaw@dshaw.com> (http://dshaw.com)", | ||
"main": "./proc", | ||
"scripts": { | ||
"install": "node-waf configure clean build" | ||
} | ||
"main": "./proc" | ||
} |
@@ -11,2 +11,2 @@ /*! | ||
exports.usage = require('./build/Release/usage').usage; | ||
exports.usage = require('./usage'); |
@@ -17,6 +17,5 @@ # Proc | ||
setTimeout(function () { | ||
var usage = proc.usage(); | ||
console.log(usage); | ||
}, 2500); | ||
proc.usage(function (err, usage_obj) { | ||
console.dir(usage_obj); | ||
}); | ||
@@ -23,0 +22,0 @@ ## Underlying data structure |
@@ -6,4 +6,7 @@ var proc = require('../'); | ||
setInterval(function () { | ||
console.log('ts', Date.now()); | ||
console.log('usage', proc.usage()); | ||
proc.usage(function (err, data) { | ||
console.log('ts', Date.now()); | ||
console.log('err', err); | ||
console.log('usage', data); | ||
}); | ||
}, 2500); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Install scripts
Supply chain riskInstall scripts are run when the package is installed. The majority of malware in npm is hidden in install scripts.
Found 1 instance in 1 package
15749
13
103
0
84
2