load-config

Load an nconf configuration by using a file path passed as a command line option


Keywords
nconf, config, configuration, optimist
License
BSD-3-Clause
Install
npm install load-config@1.0.0

Documentation

Load Config

Load an nconf configuration by using a file path passed as a command line option

Installation

npm install load-config

Usage

In this example test/config.json is a path to the configuration file you wish to load

cd <project root>
node load.js --config test/config.json

load.js

var loadConfig = require('load-config')
loadConfig(function(err, config) {
  should.not.exist(err, 'error loading config: ' + JSON.stringify(err))
  inspect('config loaded')
  var role = config.get('role')
  inspect(role, 'config role')
})