Skip to content

Instantly share code, notes, and snippets.

@moonmaster9000
Created August 29, 2010 23:47
Show Gist options
  • Save moonmaster9000/556824 to your computer and use it in GitHub Desktop.
Save moonmaster9000/556824 to your computer and use it in GitHub Desktop.
app = require('express').createServer()
app.get(
'/',
(req, res) ->
res.send('hello express in coffeescript!')
)
app.listen(3000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment