koa mini:使用不到40行代码实现一个koa 源码
迷你Koa 使用40行代码实现一个最简化版本的Koa 例 测试用例如下: // Example const app = new Application ( ) app . use ( async ( ctx , next ) => { console . log ( 'Middleware 1 Start' ) await next ( ) console . log ( 'Middleware 1 End' ) } ) app . use ( async ( ctx , next ) => { console . log ( 'Middleware 2 Start' )
用户评论