Skip to content

Instantly share code, notes, and snippets.

@furybean
furybean / example.js
Created March 27, 2017 08:20
Koa.js lite
const Koa = require('./koa');
const app = new Koa();
// logger
app.use(async function (ctx, next) {
const start = new Date();
await next();
const ms = new Date() - start;
console.log(`${ctx.method} ${ctx.url} - ${ms}`);
});