How I want to apply middleware to all paths in koa-route, e.g.
router1.use( (ctx) => {
console.error("hello 0 ...");
console.log(ctx.url);
}
router1.all( (ctx) => {
console.error("hello 0 ...");
console.log(ctx.url);
}
It comes back like this path += str.slice(index, offset) ^
TypeError: str.slice is not a function Any hints ? Thanks!
I hope this is it,