私はnode.jsが初めてです。既存のアプリケーションを 1 つ実行する必要があります。アプリケーションを実行すると、次のコードで未定義の変数が取得されます。何が間違っている可能性がありますか?
var i18n = require("i18n");
module.exports = function(app, express){
var config = this; // "this" is undefined, so I get config undefined which is causing problem ahead.
app.configure(function(){
...
...
});
.....
.....
return config;
};