美文网首页nodejavascript
koa 中间件的基本写法

koa 中间件的基本写法

作者: ysp123 | 来源:发表于2018-09-08 17:35 被阅读0次

    废话不多说,直接上代码

    const Koa = require('koa');// 创建一个Koa对象表示web app本身:

    const app =new Koa();

    // 打印request URL

    app.use(async (ctx, next) => {

        console.log(`Process ${ctx.request.method} ${ctx.request.url}...`);

        await next();

    });

    // 在端口3000监听

    app.listen(3000, () => {

      console.log('[myapp]已经运行,端口为300')

    })

    相关文章

      网友评论

        本文标题:koa 中间件的基本写法

        本文链接:https://www.haomeiwen.com/subject/guklgftx.html