Skip to content

Latest commit

 

History

17 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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

42 stars

Watchers

2 watching

Forks

Releases

Packages

Used by

Contributors

Languages