摘要: koa hello world const Koa = require('koa') const app = new Koa() app.listen(8000,()=>{ console.log('koa server success') }) 中间件:只能通过use来注册中间件 // 中间件 a 阅读全文
posted @ 2025-12-24 16:02 FE阿祖 阅读(26) 评论(0) 推荐(0)