Simple wrapper around the unix method getrusage
for reporting CPU Time and other process information
npm install getrusage
Or:
git clone git://github.com/davglass/node-getrusage.git
cd node-getrusage
npm install
var proc = require('getrusage');
console.log(proc.usage()); # Run "man getrusage" for fields.
console.log(proc.getcputime()); # User time + system time.
console.log(proc.getsystemtime()); # System time.
npm install && npm test