代码示例
    启动node服务

    1. npm init - y //初始化npm仓库
    2. # 安装依赖
    3. cnpm i koa -S
    1. 启动服务
    2. /* 1.导入koa */
    3. const koa = require("koa");
    4. /* 2.新建一个应用 */
    5. const app = new koa();
    6. app.use(async ctx=>{
    7. ctx.body = "hello world"
    8. })
    9. app.listen(8000)
    10. node index.js //启动服务