2.0.0 • Published 9 years ago

config-layered v2.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

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');