Commit b020012e by Andrew Nesbitt

Examples

parent be850e1d
/**
* Module dependencies.
*/
var connect = require('connect')
, sass = require('../sass');
// Setup server
// $ curl http://localhost:3000/functions.css
var server = connect.createServer(
sass.middleware({
src: __dirname
, dest: __dirname + '/public'
, debug: true
}),
connect.static(__dirname + '/public')
);
server.listen(3000);
console.log('server listening on port 3000');
\ No newline at end of file
*.css
\ No newline at end of file
#navbar {
width: 70%;
height: 23px; }
#navbar ul {
list-style-type: none; }
#navbar li {
float: left;
a {
font-weight: bold;
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment