gpt4 book ai didi

node.js - 单个路由的 gzip 响应

转载 作者:太空宇宙 更新时间:2023-11-03 22:46:15 27 4
gpt4 key购买 nike

我正在使用表达和压缩库:

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

var app = express()

// compress all requests
app.use(compression())

问题:

  1. 如何为单个路由添加 gzip 响应?
  2. 如果服务器是托管在 Azure Web 应用程序上的 IIS 8,压缩会起作用吗?

最佳答案

  1. How can I just add a gzip response for a single route?

您可以内联它,就像使用任何其他中间件一样:

app.get('/route', compression([OPTIONS]), function(req, res) {
...
});

请注意,压缩中间件维护 1KB 数据的默认阈值,低于该阈值的响应将不会被压缩。请参阅the documentation关于如何根据需要更改此设置。

  1. If may server is IIS 8 which is host at Azure web app, will compression work?

我认为是这样,但无法明确说明,因为我没有任何 IIS/Azure 经验。但为什么不尝试一下呢?

关于node.js - 单个路由的 gzip 响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39384519/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com