Custom middleware is a legacy option, since most times you just want to use policies.
HOWEVER! There are times you want to use sails for quick/dirty things you would normally use express for (but you already have sails around, w/e). More pertinently, if you want middleware to run before the static files from your assets
folder are served, policies won't let you do that.
// Put this in `config/express.js`
module.exports.express = {
customMiddleware: function (app) {
app.use(require('../node_modules/sails/node_modules/express').basicAuth('balderdash', 'wickywocky'));
}
};
Keep in mind this technique only works with Express (and your static files are only available that way anyhow)
@kkotak @mikermcneil I wonder as _K did by putting passport.initialize on a new file under config directory.
Is that a preferable and clean way for sails? Should it have any other way to initialize passport in api directory, instead?