I just created a module named console-trace that does one very simple yet very useful thing: prepend the line number and filename to console calls. To leverage it you just need to require('console-trace') and prepend a flag: console.trace.error('Test'); console.t.log('Test'); // shorthand You can learn about a few other options in the GitHub repository.