nconf-lite/test/fixtures/scripts/nconf-hierarchical-file-arg...

17 lines
432 B
JavaScript
Raw Normal View History

/*
* nconf-hierarchical-file-argv.js: Test fixture for using optimist defaults and a file store with nconf.
*
2014-11-26 06:31:48 +00:00
* (C) 2011, Charlie Robbins and the Contributors.
* (C) 2011, Sander Tolsma
*
*/
2014-11-26 06:31:48 +00:00
var path = require('path'),
nconf = require('../../../lib/nconf');
nconf.argv();
nconf.add('file', {
2011-11-23 21:39:30 +00:00
file: path.join(__dirname, '../hierarchy/hierarchical.json')
});
process.stdout.write(nconf.get('something') || 'undefined');