I'm using node, express and connect for a simple app and have basic HTTP auth implemented as follows (lots of code left out for brevity):
var express = require('express'),
connect = require('connect');
app.configure = function(){
// other stuff...
app.use(connect.basicAuth('username', 'password'));
// other stuff...
};
I've tried googling and even attempted implementing my own auth, but I can't figure out how to skip this auth for just one route.
I'd really appreciate it if anyone offer any help with this?