Last active
December 31, 2015 08:29
-
-
Save nazomikan/7960370 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
| var path = require('path') | |
| , mode = process.env.NODE_ENV || 'development' | |
| , env = require(path.resolve('resources/environments', mode)) | |
| ; | |
| console.log(env.WHOAMI); | |
| // output: dev太郎 |
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
| { | |
| "WHOAMI": "dev太郎" | |
| } |
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
| NODE_ENV=production node app.js |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment