設定変数を node.js モジュールに渡すための推奨される方法は何ですか? 現在、module.exports 関数内に require 呼び出しを配置する必要がある次の設計を使用しています。これは、アプリのエントリ ポイント (別名 app.js、server.js...) で構成を1 回だけvar config = require('./myConfig')
要求するという考え方であるため、どこでも使用することを避けるためにそのように行われます。
// A module that needs configuration settings when required.
// Some requires here...
var sample_module1 = require('amodule');
var sample_module2 = require('another_module');
module.exports = function(config) {
var apiKey = config.apiKey; // Get api key from configuration.
// This require must be here because needs 'config' variable...
var apiCaller = require('../lib/api_caller.js')(apiKey);
// An exported function that also uses configuration settings.
exports.makeCall = function(callback) {
// Get some settings from configuration.
var text = config.welcomeText;
var appName = config.appName;
// Use apiCaller module...
apiCaller.send(appName, text, function(e){
if (e) { return callback(e); }
return callback(null);
});
}
...
return exports;
}
「../lib/api_caller.js」モジュールを使用するより良い代替手段があるかどうか疑問に思っています (リファクタリングなどにより)。