Skip to content

Instantly share code, notes, and snippets.

@j6s
Created October 27, 2015 20:18
Show Gist options
  • Select an option

  • Save j6s/aa6fa1b6473163a195ec to your computer and use it in GitHub Desktop.

Select an option

Save j6s/aa6fa1b6473163a195ec to your computer and use it in GitHub Desktop.
var connect = require('connect');
var serveStatic = require('serve-static');
var less = require('less-middleware');
var app = connect();
app.use(less(__dirname))
app.use(serveStatic(__dirname));
app.listen(8090);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment