Express で処理するすべてのリクエストで特定のオブジェクトを確実に利用できるようにするにはどうすればよいでしょうか?
var somethingImportant = "really important";
var app = express();
// This is just a hypothetical example of what I'm after...
app.mixThisInWithRequest({
somethingImportant: somethingImportant
});
app.use(function (request, response, next) {
console.log(request.somethingImportant);
});
上記の例を考えると、関数に似たmixThisInWithRequest
機能はありますか?