動態

列表
創建 時間

Koa基本使用

一、koa基本使用 依賴安裝 npm i koa 編碼 const Koa = require("koa"); const app = new Koa(); app.use(async ctx={ ctx.body = 'hello Koa'; }); app.listen('5505',()={ console.log('Server running at http://l