-
-
Save jcollado/d75a0b75aa0565ba8e72 to your computer and use it in GitHub Desktop.
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
console.log('BUILD env=%s', process.env.NODE_ENV) |
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
{ | |
"scripts": { | |
"dev": "NODE_ENV=dev config_a__b=null npm start", | |
"start": "npm run build && config_a__b__c__d=VALUE node start.js", | |
"build": "node build.js" | |
}, | |
"dependencies": { | |
"rc": "^0.6.0" | |
} | |
} |
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 config = require('rc')('config') | |
console.log('config', config) | |
console.log('START env=%s', process.env.NODE_ENV) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment