In my Node/Express.js project I can set the views folder globally like so:
app.configure(function() { app.set(\'views\', __dirname + \'/views\'); .... sn
Full path works too
app.get('/', function(req, res) { res.render(path.join(__dirname, 'view.jade')); });