Expressive middleware for node.js using ES2017 async functions, now with less dependancies
 
 
Go to file
TJ Holowaychuk a381881bc1 Release 0.1.0 2013-12-18 20:55:23 -08:00
benchmarks fix benchmarks for wrk(1) 3.x 2013-11-12 13:15:54 -07:00
docs docs: add context example 2013-12-18 20:35:38 -08:00
examples remove errors, hello world, and stream examples 2013-12-07 15:08:02 -08:00
lib add socket error-handling. Closes #114 2013-12-17 17:37:35 -08:00
test add socket error-handling. Closes #114 2013-12-17 17:37:35 -08:00
.gitignore Initial commit 2013-08-17 00:15:57 -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
LICENSE fix license date 2013-08-17 01:06:48 -07:00
Makefile Makefile: add test/application 2013-11-13 18:41:24 -08:00
Readme.md readme: add link to examples 2013-12-07 15:09:09 -08:00
index.js Initial commit 2013-08-17 00:15:57 -07:00
package.json Release 0.1.0 2013-12-18 20:55:23 -08:00

Readme.md

koa middleware framework for nodejs

Build Status

Expressive middleware for node.js using generators via co to make web applications and REST APIs more enjoyable to write.

Only methods that are common to nearly all HTTP servers are integrated directly into Koa's small ~400 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.4 or higher for generator support, and must run node(1) with the --harmony-generators flag. If you don't like typing this, add an alias to your shell profile:

alias node='node --harmony-generators'

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

Benchmarks

If you like silly benchmarks, here's the requests per second using wrk 3.x on my MBP.

1 middleware
8367.03

5 middleware
8074.10

10 middleware
7526.55

15 middleware
7399.92

20 middleware
7055.33

30 middleware
6460.17

50 middleware
5671.98

100 middleware
4349.37

With 50 middleware (likely much more than you'll need), that's 340,260 requests per minute, and 20,415,600 per hour, and over 440 million per day, so unless you're a Facebook and can't manage to spin up more than one process to scale horizontally you'll be fine ;)

Authors

License

MIT