load-config

1.0.0 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i load-config

Weekly Downloads

2

Version

1.0.0

License

BSD

Last publish

Collaborators

  • clewfirst