文件名称:koa-mini:使用不到40行代码实现一个koa
文件大小:8KB
文件格式:ZIP
更新时间:2024-02-24 08:38:00
koa koa-server koa-mini KoaJavaScript
迷你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' ) await next ( ) console . log ( 'Middleware 2 End' ) } ) app . listen ( 7000 ) // console.log // Middleware 1 Start // Middleware 2 Start // Middleware 2 End // Middleware 1 End
【文件预览】:
koa-mini-master
----.gitignore(13B)
----example.js(357B)
----Readme.md(520B)
----package.json(275B)
----index.js(995B)
----package-lock.json(29KB)