
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
var path = require('path'),
    nconf = require('../../../lib/nconf');

nconf
  .file('localOverrides', path.join(__dirname, '..', 'merge', 'file3.json'))
  .defaults({
    "candy": {
      "something": "a nice default",
      "something1": true,
      "something2": true,
      "something5": {
        "first": 1,
        "second": 2
      }
    }
  });

process.stdout.write(JSON.stringify({
  candy: nconf.get('candy')
}));
