PATH:
usr
/
local
/
lib
/
node_modules
/
knex-migrator
/
node_modules
/
nconf
/
test
/
fixtures
/
scripts
/* * nconf-hierarchical-load-save.js: Test fixture for using yargs, envvars and a file store with nconf. * * (C) 2011, Charlie Robbins and the Contributors. * */ var path = require('path'), nconf = require('../../../lib/nconf'); // // Setup nconf to use (in-order): // 1. Command-line arguments // 2. Environment variables // 3. A file located at 'path/to/config.json' // nconf.argv() .env() .file({ file: path.join(__dirname, '..', 'load-save.json') }); // // Set a few variables on `nconf`. // nconf.set('database:host', '127.0.0.1'); nconf.set('database:port', 5984); process.stdout.write(nconf.get('foo')); // // Save the configuration object to disk // nconf.save();
[-] nconf-env.js
[edit]
[+]
..
[-] nconf-argv.js
[edit]
[-] nconf-hierarchical-load-merge-with-separator.js
[edit]
[-] provider-argv.js
[edit]
[-] nconf-hierarchical-load-save.js
[edit]
[-] nconf-change-argv.js
[edit]
[-] provider-env.js
[edit]
[-] nconf-hierarchical-load-merge.js
[edit]
[-] nconf-hierarchical-defaults-merge.js
[edit]
[-] nconf-hierarchical-file-argv.js
[edit]
[-] nconf-nested-env.js
[edit]