0.0.3 • Published 10 years ago

envm v0.0.3

Weekly downloads
4
License
MIT
Repository
github
Last release
10 years ago

node-envm Build Status

Environment management for nodejs

Installation

$ npm install envm

Usage

var env = require('envm')(module);
env.exports('test', function() {
  console.log('under test');
})

env.exports('production', function() {
  console.log('under production');
})

And then you should run your node process in this way:

$ NODE_ENV=test node app
> under test
$ NODE_ENV=production node app
> under production

License

MIT