1. yarn add koa-static
    1. const koa = require("koa");
    2. const app = new koa();
    3. const path = require("path");
    4. const static = require("koa-static");
    5. app.use(static(path.join(__dirname,"static")))
    6. app.listen(8000);