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' }
]);
root Root directory from which to serve sass. Defaults to CWD
match RegExp used to match request urls. Defaults to /\.sass$/
--sassRoot