Sass

The sass middleware compiles and serves *.sass files as css. Sass itself is not bundled with Connect, so you must have it installed and available to node.

connect.createServer([
    { provider: 'sass', root: __dirname + '/public' }
]);

Options

root   Root directory from which to serve sass. Defaults to CWD
match  RegExp used to match request urls. Defaults to /\.sass$/

Environment Variables

--sassRoot