earl-express
Provides the application
macro, which is used as follows:
require-macros: earl-express -> applicationrequire: cookie-parser application my-app: use: cookie-parser get "/hello": @res.send{"Hello!"} post "/something": ... port = 3000print 'Listening on port {port}!'my-app.listen{port, .localhost}