1. const UserModel = require('./model/user');
    2. const Koa = require('koa');
    3. const app = new Koa()
    4. app.use(async (ctx,next)=>{
    5. var res = await UserModel.find({})
    6. ctx.body = res
    7. })
    8. app.listen(8080)