envm

0.0.3 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i envm

Weekly Downloads

0

Version

0.0.3

License

MIT

Last publish

Collaborators

  • yorkie