Skip to content

Evanion/config-extended

Repository files navigation

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

About

An easy to use config package to extend the regular functionality of node-config

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published