0.1.1 • Published 11 years ago

throttled-log v0.1.1

Weekly downloads
1,739
License
-
Repository
-
Last release
11 years ago

throttled-log

Throttled log to STDOUT

If you're writing a lot to STDOUT, throttling writes goes a long way to keeping performance up.

Usage

var log = require("throttled-log")();

// This is much faster
for (var i = 10000 - 1; i >= 0; i--) {
  log("this is a test");
};

// than this
for (var i = 10000 - 1; i >= 0; i--) {
  console.log("this is a test");
};

// unthrottled: 6401 throttled: 268