Server : Apache System : Linux 145.162.205.92.host.secureserver.net 5.14.0-611.45.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Apr 1 05:56:53 EDT 2026 x86_64 User : tradze ( 1001) PHP Version : 8.1.34 Disable Function : NONE Directory : /home/tradze/www/node-socket/node_modules/broadway/lib/broadway/plugins/ |
/*
* config.js: Default configuration management plugin which attachs nconf to App instances
*
* (C) 2011, Nodejitsu Inc.
* MIT LICENSE
*
*/
var nconf = require('nconf');
//
// ### Name this plugin
//
exports.name = 'config';
//
// ### function attach (options)
// #### @options {Object} Options for this plugin
// Extends `this` (the application) with configuration functionality
// from `nconf`.
//
exports.attach = function (options) {
options = options || {};
this.config = new nconf.Provider(options);
//
// Setup a default store
//
this.config.use('literal');
this.config.stores.literal.readOnly = false;
};
//
// ### function init (done)
// #### @done {function} Continuation to respond to when complete.
// Initalizes the `nconf.Provider` associated with this instance.
//
exports.init = function (done) {
//
// Remark: There should be code here for automated remote
// seeding and loading
//
this.config.load(function (err) {
return err ? done(err) : done();
});
};