Skip to content

Rich-Harris/node-console-group

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-console-group

In browsers, console.group() is an incredibly useful debugging tool:

function foo (input) {
  console.group('we are debugging', 'foo');
  console.log('input value:');
  console.log(input);
  console.group('nested group');
  console.log('console.groupception')
  console.groupEnd();
  console.groupEnd();

  return input.answer;
}

foo({answer: 42});

console-group-browser

But it doesn't exist in node.js! It was driving me crazy, so I created this package:

console-group-terminal

It's a 5 minute job - highly unsophisticated, doesn't even have a test suite, so YMMV. I'm not planning to actively maintain it (though I'll certainly take pull requests). Be warned! If that doesn't put you off, read on for usage instructions.

Installation and usage

Install...

npm install console-group

...and use. This overwrites the console.log method, and adds console.group and console.groupEnd.

require( 'console-group' ).install();

// later, if you want to clean up
require( 'console-group' ).teardown();

License

MIT.

About

console.group() for node.js

Resources

Stars

Watchers

Forks

Packages

No packages published