Skip to content

Instantly share code, notes, and snippets.

@pqwy
Created November 12, 2012 16:27
Show Gist options
  • Save pqwy/4060311 to your computer and use it in GitHub Desktop.
Save pqwy/4060311 to your computer and use it in GitHub Desktop.
basic livescript/express scaffold
express = require \express
app = express!
..set \views, "#__dirname/../views"
..use express.static "#__dirname/../pub"
app.get '/', (req, res) ->
res.render 'index.jade'
app.listen 3001
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment