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