npm.io
1.0.3 • Published 7 years ago

@evanion/config-extended

Licence
MIT
Version
1.0.3
Deps
0
Size
184 kB
Vulns
0
Weekly
0

Greenkeeper badge CircleCI

config-extended

An easy to use package to handle configuration in your Node.js application. This package extends the standard config package to automatically resolve environment variables.

Example

# DB_INFO=mongo://localhost:27017/example npm start

config/default.json

{
  "database": "DB_INFO"
}

index.js

import Config from '@evanion/config-extended';

const dbHost = Config.get('database'); // > mongo://localhost:27017/example