before
ユニオンは、他の人が以前に述べたように、プロパティを介した接続ミドルウェアをサポートしています。ただし、unionはアプリケーション構成を処理しません。フラットアイアンはそうします。ただし、APIはExpressとは大きく異なります。
たとえば、アプリケーションの構成は次のようになります。
var path = require('path'),
flatiron = require('flatiron'),
app = flatiron.app,
plugins = flatiron.plugins,
connect = require('connect'), // most connect middlewares work with flatiron ootb
passport = require('passport');
// Use flatiron's http plugin (not the same as a middleware!)
app.use(plugins.http);
// configuration consists of key/value pairs, not of function blocks associated with
// certain "environments".
// Here's *a* way you can handle environment-based configs; there are others!
app.config.file(path.resolve(
__dirname,
'config',
(process.env.NODE_ENV || 'config') + '.json'
));
// Use our config to set the secret
app.http.before.push(connect.session({
secret: app.config.get('secret') || 'keyboard cat' //default
}))
app.http.before.push(passport.initialize());
app.http.before.push(passport.session());
私はこの例を実行しようとはしていませんが(詳細はここにあると確信しています)、うまくいけば、これでアイデアが得られます。