Koa框架的一些基本用法

1、基本用法 建立 HTTP服務 server.js const Koa = require('koa'); const app = new Koa(); app.listen(8080, () => { console.log('Server Started...') }) 運行 node server.js 訪問 http://localhost:8080/ 瀏覽器顯示 「Not F
相關文章
相關標籤/搜索