Created
January 28, 2014 22:21
-
-
Save simonexmachina/8677808 to your computer and use it in GitHub Desktop.
Demonstration of nodemon's tty.isatty issue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var debug = require('debug')('foo'); | |
debug('bar'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"dependencies": { | |
"debug": "~0.7.4" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Run this using
node
and you'll see coloured output, run it withnodemon
and you get ugly log output.