時下前端工程師有很多人比較關注NodeJs以及express 框架或Koa 框架之類的新技術。難得我最近閒時較多,利用一下舊曆新年尚未正式到來的這片閒暇,也來涉足其中,一窺其中奧妙。
Koa 是由Express 原班人馬打造的超輕量服務端框架
與Express 相比,除了自由度更高,可以自行引入中間件之外,更重要的是使用了ES6 async,從而避免了回呼地獄
不過也是因為程式碼升級,所以Koa2 需要v7.60 以上的node.js 環境
手動建立一個專案目錄,然後快速產生一個 package.json 檔案
npm init -y
安裝koa //目前版本2.4.1
npm install koa -S
然後建立一個app.js
// app.js const Koa = require('koa'); const app = new Koa(); app.use(async ctx => { ctx.body = 'Wise Wrong'; }); app.listen(3000);
最後在package.json 中加入啟動指令
一個最基礎的koa 應用程式就這樣完成了
##可以執行npm start 並在瀏覽器訪問http://localhost:3000/ 查看效果如果覺得手動建立專案太過繁瑣,可以使用腳手架koa-generato 來產生專案npm install koa-generator -g
koa2 project_name
// app.js// 原生路由 const Koa = require('koa'); const fs = require('fs'); const app = new Koa(); app.use(async (ctx, next) => { if (ctx.request.path === '/index') { ctx.type = 'text/html'; ctx.body = fs.createReadStream('./views/index.html'); } else { await next(); } }); app.listen(3000);
npm install koa-router -S
const router = require('koa-router')();
const koaRouter = require('koa-router'); const router = koaRouter();
#
// routes/index.js const fs = require('fs'); const router = require('koa-router')() router.get('/index', async (ctx, next) => { ctx.type = 'text/html'; ctx.body = fs.createReadStream('./views/index.html'); }); module.exports = router
// app.js const Koa = require('koa'); const app = new Koa(); const index = require('./routes/index') app.use(index.routes(), index.allowedMethods()) app.listen(3000);
router.get('/about/:name', async (ctx, next) => { ctx.body = `I am ${ctx.params.name}!`; });
npm install koa-static -S
const static = require('koa-static'); // 将 public 目录设置为静态资源目录 const main = static(__dirname + '/public'); app.use(main);
app.use(require('koa-static')(__dirname + '/public'));
四、模板引擎上面的路由是使用fs 模組直接讀取html 檔案開發的時候更建議使用koa-views中間件來渲染頁面
npm install koa-views -S
const views = require('koa-views') app.use(views(__dirname + '/views'));
// routes/index.js const router = require('koa-router')() router.get('/index', async (ctx, next) => { await ctx.render('index'); }); module.exports = router
app.use(views(__dirname + '/views', { extension: 'pug' // 以 pug 模版为例 }))
正如文中所說,從零開始太過繁瑣,可以使用腳手架koa-generato 來快速開發
不過我更推薦,在熟悉了Koa 之後,搭一個適合自己項目的腳手架
上面是我整理給大家的,希望今後對大家有幫助。
相關文章:
#以上是透過Node.js使用Koa進行專案搭建的詳細內容。更多資訊請關注PHP中文網其他相關文章!