koa2系列教程:koa2應用初見

koa2系列教程,持續更新前端


這篇教程主要介紹koa2構建服務器,簡單引用node

本教程的版本:要格外注意版本號git

image.png

案例:簡單利用koa2搭建服務器

文件夾結構:

代碼github

// 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:3000npm

源碼地址:https://github.com/xiaqijian/...segmentfault

本片就結束了瀏覽器

推薦node項目工具


首發於微信公衆號:node前端服務器

不妨關注一下微信

相關文章
相關標籤/搜索