nodejs 搭建 RESTful API 伺服器的常用包及其簡介

来源:http://www.cnblogs.com/lihuanqing/archive/2017/07/24/7229878.html
-Advertisement-
Play Games

常用包 框架: yarn add express 資料庫鏈接: yarn add sequelize yarn add mysql2 處理 favicon: yarn add "serve favicon" 紀錄日誌: yarn add "morgan" 生成文檔: yarn add dev "ap ...


常用包

  • 框架:
    yarn add express
  • 資料庫鏈接:
    yarn add sequelize
    yarn add mysql2
  • 處理 favicon:
    yarn add serve-favicon
  • 紀錄日誌:
    yarn add morgan
  • 生成文檔:
    yarn add --dev apidoc
  • 解析請求參數:
    yarn add body-parser
  • 設置 HTTP 頭(提高安全性):
    yarn add helmet
  • 文件變動監控(自動重啟):
    yarn add --dev nodemon (啟動伺服器腳本中替換 node 即可)
  • 允許 cors 請求:
    yarn add cors
  • 壓縮數據:
    yarn add compression
  • 響應時間:
    yarn add response-time
  • 數據偽造:
    yarn add faker
    – 數據驗證:
    yarn add express-validator
  • 進程管理:
    yarn add --dev pm2
    帶重啟(nodemon用於開發環境),日誌,負載均衡

serve-favicon

優點:把請求 favicon 的記錄從日誌中去除。緩存 icon 提高性能。使用相容性最好的 Content-Type。
使用方式:

var favicon = require('serve-favicon')

app.use(favicon(path.join(__dirname, 'public', 'favicon.ico')))

morgan

使用方式:

var morgan = require('morgan')

app.use(morgan('combined')) //參數可選 dev tiny 或自定義輸出日誌格式,詳見文檔
// 導出日誌文件
var express = require('express')
var fs = require('fs')
var morgan = require('morgan')
var path = require('path')

var app = express()

// create a write stream (in append mode)
var accessLogStream = fs.createWriteStream(path.join(__dirname, 'access.log'), {flags: 'a'})

// setup the logger
app.use(morgan('combined', {stream: accessLogStream}))

body-parser

使用方式:

var bodyParser = require('body-parser')

// parse application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({ extended: false }))
//設置 false 使用 querystring 解析,處理 ajax 提交的複雜數據更在行。(true 使用 qs 解析)
// parse application/json
app.use(bodyParser.json())

apidoc

使用方式:
生成文檔命令: apidoc -i routes/ -o doc/( routes 是程式入口,doc 是文檔出口)
註釋示例:

/**
 * @api {get} /user/:id Read data of a User
 * @apiVersion 0.3.0
 * @apiName GetUser
 * @apiGroup User
 * @apiPermission admin
 *
 * @apiDescription Compare Verison 0.3.0 with 0.2.0 and you will see the green markers with new items in version 0.3.0 and red markers with removed items since 0.2.0.
 *
 * @apiParam {String} id The Users-ID.
 *
 * @apiSuccess {String}   id            The Users-ID.
 * @apiSuccess {Date}     registered    Registration Date.
 * @apiSuccess {Date}     name          Fullname of the User.
 * @apiSuccess {String[]} nicknames     List of Users nicknames (Array of Strings).
 * @apiSuccess {Object}   profile       Profile data (example for an Object)
 * @apiSuccess {Number}   profile.age   Users age.
 * @apiSuccess {String}   profile.image Avatar-Image.
 * @apiSuccess {Object[]} options       List of Users options (Array of Objects).
 * @apiSuccess {String}   options.name  Option Name.
 * @apiSuccess {String}   options.value Option Value.
 *
 * @apiError NoAccessRight Only authenticated Admins can access the data.
 * @apiError UserNotFound   The <code>id</code> of the User was not found.
 *
 * @apiErrorExample Response (example):
 *     HTTP/1.1 401 Not Authenticated
 *     {
 *       "error": "NoAccessRight"
 *     }
 */

helmet

var express = require('express')
var helmet = require('helmet')

var app = express()

app.use(helmet())

cors

使用方式:

// 允許所有跨域請求
var express = require('express')
var cors = require('cors')
var app = express()

app.use(cors())
// 允許某路由的跨域請求
app.get('/products/:id', cors(), function (req, res, next) {
  res.json({msg: 'This is CORS-enabled for a Single Route'})
})
// 允許某些域的請求
var whitelist = ['http://example1.com', 'http://example2.com']
var corsOptions = {
  origin: function (origin, callback) {
    if (whitelist.indexOf(origin) !== -1) {
      callback(null, true)
    } else {
      callback(new Error('Not allowed by CORS'))
    }
  }
}

app.get('/products/:id', cors(corsOptions), function (req, res, next) {
  res.json({msg: 'This is CORS-enabled for a whitelisted domain.'})
})
// 允許 GET/POST 以外的請求
app.options('/products/:id', cors()) // enable pre-flight request for DELETE request
app.del('/products/:id', cors(), function (req, res, next) {
  res.json({msg: 'This is CORS-enabled for all origins!'})
})

// 對所有路由允許
app.options('*', cors()) // include before other routes

compression

使用方式:

var compression = require('compression')
var express = require('express')

var app = express()
app.use(compression({filter: shouldCompress}))

function shouldCompress (req, res) {
  if (req.headers['x-no-compression']) {
    // don't compress responses with this request header
    return false
  }

  // fallback to standard filter function
  return compression.filter(req, res)
}

response-time

使用方式:
該中間件將響應時間寫在響應頭 X-Response-Time

var express = require('express')
var responseTime = require('response-time')

var app = express()
// 統計響應進入該中間件到寫完響應頭的毫秒數
app.use(responseTime())

express-validator

驗證規則

// 初始化
app.use(expressValidator())
// this line must be immediately after any of the bodyParser middlewares!

// 檢查參數是否符合標準
req.check('testparam', 'Error Message').notEmpty().isInt()

// 將參數轉化為
req.sanitize('postparam').toBoolean()

// 返回驗證結果
req.getValidationResult().then(function(result) {
  // do something with the validation result
})

pm2

pm2 start app.js --name="api" # Start application and name it "api"
pm2 stop all                  # Stop all apps
pm2 logs                      # Display logs of all apps
pm2 web     後訪問     http://localhost:9615/        # 查看系統狀態

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 一:引入bootstrap框架 昨天一直被bootstrap柵格系統折磨。 why? 我本來想一邊碼字,一邊學習柵格佈局的。but不成功。這時我頭腦已經昏了。 下午,我查看了bootstrap的官網,帶著我的問題:究竟怎麼使用bootstrap的框架呢? 發現問題一:我原先外部引入的bootstra ...
  • [1]概述 [2]大括弧表示 [3]字元編解碼 [4]for...of [5]normalize() [6]U修飾符 ...
  • 開始編碼工作也有段時間了,想想沒有留下點什麼,有點遺憾。學到的一些經驗,寫寫,分享一下。也給自己整理一下。 今天分享一下,在原有的日期上添加天數輸出添加後的日期。開始做的時候,簡單的思路是,直接用new Date(),得到的本地時間再在new Date().getDate();再加上對應的天數。 這 ...
  • 背景 目前團隊中新的 Web 項目基本都採用了 Vue 或 React ,加上 RN,這些都屬於比較重量級的框架,然而對於小型 Web 頁面,又顯得過大。早期的一些項目則使用了較原始的 HTML 頁面構建技術,但業務邏輯基本無法復用。 近半年做過幾個小型 Web 頁面,在不斷學習前端知識的同時,也在 ...
  • 前言 最近做項目的時候遇到了一些跨域問題,雖然網上對於跨域的問題分享還挺多的。不過當我實際遇到的時候還是有點懵。趁項目剛上線完,寫篇文章總結下。 造成跨域的兩種策略 瀏覽器的同源策略會導致跨域,這裡同源策略又分為以下兩種 DOM同源策略:禁止對不同源頁面DOM進行操作。這裡主要場景是iframe跨域 ...
  • jQuery UI是以jQuery為基礎的代碼庫。包含底層用戶交互、動畫、特效、和可更換主題的可視控制項。我們可以直接用它來構建具有很好交互性的web應用程式。 jQueryUI網址:http://jqueryui.com 常用的jqueryUI插件:Draggable 1、設置數值的滑動條 1 <! ...
  • gulp前端自動化常用插件彙總 ...
  • 具體代碼如下: ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...