溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Node.js使用Koa搭建 基礎項目

發(fā)布時間:2020-09-21 03:39:36 來源:腳本之家 閱讀:472 作者:WiseWrong 欄目:web開發(fā)

Koa 是由 Express 原班人馬打造的超輕量服務端框架

與 Express 相比,除了自由度更高,可以自行引入中間件之外,更重要的是使用了 ES6 + async,從而避免了回調(diào)地獄

不過也是因為代碼升級,所以 Koa2 需要 v7.60 以上的 node.js 環(huán)境

一、創(chuàng)建項目

手動創(chuàng)建一個項目目錄,然后快速生成一個 package.json 文件

npm init -y
安裝 koa    //當前版本 2.4.1
npm install koa -S
然后創(chuàng)建一個 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 中添加啟動指令

Node.js使用Koa搭建 基礎項目

一個最基礎的 koa 應用就這樣完成了

Node.js使用Koa搭建 基礎項目

可以執(zhí)行 npm start 并在瀏覽器訪問 http://localhost:3000/ 查看效果

如果覺得手動創(chuàng)建項目太過繁瑣,可以使用腳手架 koa-generato 來生成項目

npm install koa-generator -g
koa2 project_name
然后在項目下 npm install 安裝依賴,npm start 啟動項目

如果是剛接觸 koa,建議先看完這篇博客,再使用腳手架工具,這樣能更好的理解各個依賴包的作用

二、配置路由

上面 app.js 中有一個 ctx,這是一個 Koa 提供的 Context 對象,封裝了 request 和 response

每一次 HTTP Request 都會創(chuàng)建一個 Context 對象

我們可以通過 Context.request.path 來獲取用戶請求的路徑,然后通過 Context.response.body 給用戶發(fā)送內(nèi)容

Koa 默認的返回類型是 text/plain,如果要返回一個 html 文件(或者一個模塊文件),就需要修改 Context.response.type

另外,Context.response 可以簡寫,比如 Context.response.type 簡寫為 Context.type,Context.response.body 簡寫為 Context.type

在項目下創(chuàng)建一個存放 html 文件的目錄 views,并在該目錄下創(chuàng)建一個 index.html,然后修改 app.js

// 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);
然后在瀏覽器中訪問 http://localhost:3000/index 就能看到 index.html 頁面,而訪問別的地址則是 not found

這樣處理 url 顯得特別笨拙,所以我們需要引入路由中間件 koa-router

npm install koa-router -S
需要注意的是,在導入 koa-router 的時候,需要在末尾加一個括號:
const router = require('koa-router')();
相當于:
const koaRouter = require('koa-router');
const router = koaRouter();
創(chuàng)建一個 routes 目錄,用來存放路由文件,并在目錄下創(chuàng)建 index.js

Node.js使用Koa搭建 基礎項目

// 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
這里還可以使用 prefix 方法,為文件中的所有接口添加一個 baseUrl

// router.prefix('/about')

修改 app.js

// app.js

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

const index = require('./routes/index')
app.use(index.routes(), index.allowedMethods())

app.listen(3000);
上面的 allowedMethods 用于校驗請求的方法,如果用 post 請求訪問 get 接口,就會直接返回失敗

另外,還可以在 url 中添加變量,然后通過 Context.params.name 訪問

router.get('/about/:name', async (ctx, next) => {
 ctx.body = `I am ${ctx.params.name}!`;
});
 

三、靜態(tài)資源

在上面的 index.html 中,如果需要引入 css 等靜態(tài)資源,就需要用到 koa-static

npm install koa-static -S
創(chuàng)建一個目錄 public 用來存放靜態(tài)資源

Node.js使用Koa搭建 基礎項目

 然后在 app.js 中添加以下代碼

const static = require('koa-static');
// 將 public 目錄設置為靜態(tài)資源目錄
const main = static(__dirname + '/public');
app.use(main);
事實上,這三行代碼還可以優(yōu)化
app.use(require('koa-static')(__dirname + '/public'));
然后就能在 index.html 中引入對應的文件了

Node.js使用Koa搭建 基礎項目 

四、模板引擎

上面的路由是使用 fs 模塊直接讀取 html 文件

開發(fā)的時候更推薦使用 koa-views 中間件來渲染頁面

npm install koa-views -S
在 app.js 中將 views 目錄設定為模版目錄
const views = require('koa-views')
app.use(views(__dirname + '/views'));
然后在路由文件中,就能使用 render 方法了
// routes/index.js

const router = require('koa-router')()

router.get('/index', async (ctx, next) => {
 await ctx.render('index');
});

module.exports = router
以上是直接渲染 html 文件的方法,如果要引入模板引擎,可以添加 extension 字段來設定模版類型
app.use(views(__dirname + '/views', {
 extension: 'pug' // 以 pug 模版為例
}))

五、結(jié)語

如果將 Express 看作 webstorm,那么 Koa 就是 sublime

當 Express 流行的時候,其冗雜的依賴項被很多開發(fā)者所詬病

所以 Express 團隊將  Express 拆卸得只剩下最基本的骨架,讓開發(fā)者自行組裝,這就是 Koa

正如文中所說,從零開始太過繁瑣,可以使用腳手架 koa-generato 來快速開發(fā)

不過我更推薦,在熟悉了 Koa 之后,搭一個適合自己項目的腳手架

不然為何不直接用 Express 呢

我想這也是 Koa 的官方文檔中沒有提到 generato 工具的原因吧

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI