Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way I can read environment variables in node.js code?

Like for example python's os.environ['HOME']

share|improve this question

3 Answers

up vote 166 down vote accepted

Got it.

process.env.ENV_VARIABLE

Where ENV_VARIABLE is the name of the variable you wish to access.

share|improve this answer

For those of you using Express you can get it with: app.settings.env

share|improve this answer
4  
Since Express is just node, I don't see why you wouldn't just use process.env.ENV_VARIABLE for everything. – Mauvis Ledford Jan 16 at 17:17
2  
app.settings.env gives you the “environment” the server is running in: development, production, etc. This is not what the OP asked for. – Félix Saparelli Feb 23 at 11:08
@FélixSaparelli so this in completely wrong and has 15 up votes? If so the poster should probably deleted it. – Ross Apr 26 at 14:55

You might consider managing your configuration in a centralized manner using something like nconf https://github.com/flatiron/nconf

It helps you work with configuration files, environment variables, command-line arguments.

share|improve this answer
great point. in my ,ain app.coffee I use nconf.argv().env().file file: "./config.json" This allows me to use a config file while running locally, but when I push to dotcloud, it automatically overrides those with enviroment variables. And you can override with commend line as you said as well. This has been a really great solution for me. – WallMobile Apr 17 at 1:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.