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
// settings | |
var env = process.env.NODE_ENV || 'development'; | |
// new relic integration | |
if (env != 'development') { | |
// we are in prod environment | |
// run new relic | |
require('newrelic'); | |
console.log('Newrelic has run'); | |
} |