1.0.1 • Published 9 years ago

koat v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

koat

umm don't forget your coat?

koa app ready to rock.

includes

  • koa-logger
  • koa-bodyparser
  • koa-router which you can use with app.get('/', function *(next){})
  • smart response content types
  • debug statements with app.debug('💯')
  • static with app.static(root, opts)

usage

var app = require('koat')
app.get('/', function *() { this.body = "🎉🌮 taco party 🌮🎉"})
app.listen(3000);