Skip to main content
Skip to main content

HttpCompressionOptions

HTTP compression configurations.

Properties

enabledboolean
Whether HTTP compression is enabled. By default, it's false.
levelnumber
The level of zlib compression to apply to responses. A higher level will result in better compression but will take longer to complete. A lower level will result in less compression but will be much faster. The default value is 6.
memLevelnumber
How much memory should be allocated to the internal compression state. It's an integer in the range of 1 (minimum level) and 9 (maximum level). The default value is 8.
thresholdstring | number
The minimum response body size that compression is applied on. Its value can be the number of bytes or any string accepted by the bytes module. The default value is 1024.
Was this section helpful?