0.1.1 • Published 14 years ago
devcon v0.1.1
Devcon
Devcon adds a property called dev to Node's console object, which wraps each console method with a check if its running on a production environment.
Devcon is written in coffeescript by Marcel Miranda.
Installation
npm install devconUsage
process.env.NODE_ENV = "production"
console.dev.log("Hello world!") // Is silent
process.env.NODE_ENV = "anything_other_than_production"
console.dev.log("Hello world!") // Is equivalent to console.logCopyright © 2012 Marcel Miranda. See LICENSE for further details.