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)
I'm new to sails and node.js and I don't know if I'm doing it the sails way. I've defined my middleware configuration for
passport
like this:It works fine for me but I don't know if it follows proper conventions. Sails version is
0.10.5
.