koa2系列教程,持續更新前端
這篇教程主要介紹koa2構建服務器,簡單引用node
本教程的版本:要格外注意版本號git
代碼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前端服務器
不妨關注一下微信