- new Koa的时候,发生了什么?
- app.use() 中间件时,做了什么?
- app.listen() 时,做了什么事情
// npm 淘宝源
// npm install koa@latest -S --registry=https://registry.npm.taobao.org
const Koa = require('koa');
const app = new Koa();
app.use(async (ctx, next) => {
ctx.body = 'index.html';
});
app.listen(3000);