const app = new Koa(); /** 在此可組合各種Middleware **/ app.use(async function(ctx) { ctx.body = 'Hello Koa2'; }); app.listen(3000);.
確定! 回上一頁