koa-lite/examples/hello-world.js

10 lines
118 B
JavaScript

var koa = require('..');
var app = koa();
app.use(function *(){
this.body = 'Hello World';
});
app.listen(3000);