这篇教程主要介绍koa2构建服务器,简单引用

本教程的版本:要格外注意版本号

image.png

案例:简单利用koa2搭建服务器

文件夹结构:

代码

1
2
3
4
5
6
7
8
9
10
11
12
// index.js

const Koa = require('koa')
const app = new Koa()

app.use(async (ctx) => {
ctx.body = 'hello world'
})

app.listen(3000)

console.log('localhost:3000')

利用node index.js就可以启动了,在浏览器中输入localhost:3000

源码地址:https://github.com/xiaqijian/koa2-lessons/tree/master/lesson1

本片就结束了

推荐node项目工具


首发于微信公众号:node前端

不妨关注一下