Expressive middleware for node.js using ES2017 async functions, now with less dependancies
Go to file
Jonathan Ong 11cf47c8a6 remove .request accept tests the fail
due to
https://github.com/expressjs/accepts/commit/5975ce464575bd0fddfdd3d41796
958cd6bfc20b. passing nothing into accepts() is silly anyways.
2014-06-03 21:35:11 -07:00
benchmarks benchmark: use generator delegation 2013-12-24 22:12:48 -08:00
docs add originalUrl 2014-05-06 10:01:46 +08:00
lib remove req.host=, fix docs 2014-05-05 12:45:33 +08:00
test remove .request accept tests the fail 2014-06-03 21:35:11 -07:00
.gitignore add test.js to gitignore 2014-05-01 18:07:46 -07:00
.npmignore Initial commit 2013-08-17 00:15:57 -07:00
.travis.yml add .travis.yml. Closes #1 2013-08-20 21:34:35 -07:00
History.md 0.6.1 2014-05-11 20:51:11 -07:00
LICENSE update copyright year 2014-02-03 01:59:59 -08:00
Makefile add linting 2014-05-16 09:23:00 -07:00
Readme.md Use SVG Badge 2014-04-06 11:53:08 -03:00
package.json add linting 2014-05-16 09:23:00 -07:00

Readme.md

koa middleware framework for nodejs

Build Status

Expressive middleware for node.js using generators via co to make web applications and APIs more enjoyable to write. Koa's middleware flow in a stack-like manner allowing you to perform actions downstream, then filter and manipulate the response upstream. Koa's use of generators also greatly increases the readability and robustness of your application.

Only methods that are common to nearly all HTTP servers are integrated directly into Koa's small ~550 SLOC codebase. This includes things like content-negotiation, normalization of node inconsistencies, redirection, and a few others.

No middleware are bundled with koa. If you prefer to only define a single dependency for common middleware, much like Connect, you may use koa-common.

Installation

$ npm install koa

To use Koa you must be running node 0.11.9 or higher for generator support, and must run node(1) with the --harmony flag. If you don't like typing this, add an alias to your shell profile:

alias node='node --harmony'

Community

Example

var koa = require('koa');
var app = koa();

// logger

app.use(function *(next){
  var start = new Date;
  yield next;
  var ms = new Date - start;
  console.log('%s %s - %s', this.method, this.url, ms);
});

// response

app.use(function *(){
  this.body = 'Hello World';
});

app.listen(3000);

Running tests

$ make test

Authors

License

MIT