Load environment variables
When I'm working on a new Node.js project, I'like to make my app start by trying to read a local file called .env.js
or .env.coffee
outside version control.
With Coffeescript:
_ = require 'underscore'
// Try to load env vars
try _.extend process.env, require './.env' catch err
Then on my env file I can just export my env vars like this:
module.exports =
my_api_key: "1234"
my_api_secret: "5678"
The require call is wrapped in a try catch so it doesn't fail on my production environment, where I've set my environment variables by any another method. It seems there is no concise way to look if a file will be found by the require method, inside the modules path.
Written by Marcel Miranda
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Coffeescript
Authors
iam4x
94.17K
ericdfields
63.02K
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#