change to express

This commit is contained in:
jysperm
2014-02-10 23:29:51 +08:00
parent 020b161b8a
commit 806eccd621
5 changed files with 12 additions and 13 deletions

7
app.coffee Normal file
View File

@@ -0,0 +1,7 @@
express = require 'express'
app = express()
app.get '/', (req, res) ->
res.send 'Hello World'
app.listen 3000