"use strict"
express = require("express")
app = module.exports = express()
app.configure ->
app.set "port", process.env.PORT or 3000
app.get "/", (req, res) ->
res.send "Howdy from CoffeeScript!"
| / | Focus search |
| ? | Show this help |
| Esc | Unfocus input |