美文网首页KOA
1.KOA2 快速体验

1.KOA2 快速体验

作者: 帶頭二哥 | 来源:发表于2020-01-06 01:01 被阅读0次

    快速体验

    安装

    // 初始化 package.json
    npm init
    
    // 安装 koa2
    npm install koa --install
    

    代码

    // 引入 koa 模块
    const Koa = require('koa')
    // 创建 koa 应用
    const app = new Koa()
    
    // 处理请求
    app.use( async ctx => {
        ctx.body = "Hello World"
    })
    
    // 启动应用
    app.listen(3000)
    console.log("starting at port 3000")
    

    启动

    启动应用
    node app.js
    

    访问地址

    http://localhost:3000
    

    相关文章

      网友评论

        本文标题:1.KOA2 快速体验

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