config-layered
v2.0.0
Published
A Config loader that allows multiple nested configs, specified as Javascript files, that inherit from a parent. The root config, all.js, is loaded first. Then, for each entry in a hyphen-separated NODE_ENV, another config is merged in.
Downloads
7
Maintainers
Readme
config-layered
This config loader allows multiple nested configs that inherit from a parent. The root config, all.js, is loaded first. Then, for each item in a hyphen-separated NODE_ENV, an extra config is merged in.
E.g:
NODE_ENV = dev: all.js, dev.js NODE_ENV = test-unit: all.js, test.js, test-unit.js
Usage
var configLayered = require('config-layered')
// default: load config from ./config directory
var config = configLayered();
// specified folder: load config fron specific folder
config = configLayered('configuration');