
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
koa-compress
Advanced tools
Compress middleware for Koa
const compress = require('koa-compress')
const Koa = require('koa')
const app = new Koa()
app.use(compress({
filter (content_type) {
return /text/i.test(content_type)
},
threshold: 2048,
gzip: {
flush: require('zlib').Z_SYNC_FLUSH
},
deflate: {
flush: require('zlib').Z_SYNC_FLUSH,
},
br: false // disable brotli
}))
function (mimeType: string): Boolean {
}
An optional function that checks the response content type to decide whether to compress. By default, it uses compressible.
Minimum response size in bytes to compress.
Default 1024 bytes or 1kb.
The current encodings are, in order of preference: br, gzip, deflate.
Setting options[encoding] = {} will pass those options to the encoding function.
Setting options[encoding] = false will disable that encoding.
Brotli compression is supported in node v11.7.0+, which includes it natively.
An optional string, which specifies what encoders to use for requests without
Accept-Encoding.
Default idenity.
The standard dictates to treat such requests as * meaning that all compressions are permissible,
yet it causes very practical problems when debugging servers with manual tools like curl, wget, and so on.
If you want to enable the standard behavior, just set defaultEncoding to *.
You can always enable compression by setting ctx.compress = true.
You can always disable compression by setting ctx.compress = false.
This bypasses the filter check.
app.use((ctx, next) => {
ctx.compress = true
ctx.body = fs.createReadStream(file)
})
The 'compression' package is a middleware for Express.js that provides HTTP compression. It supports gzip and deflate algorithms. Compared to koa-compress, it is designed specifically for Express.js and does not support Brotli compression out of the box.
The 'shrink-ray-current' package is a middleware for Node.js that provides HTTP compression using gzip, deflate, and Brotli algorithms. It is similar to koa-compress in terms of supported algorithms but can be used with various frameworks, not just Koa.
FAQs
Compress middleware for koa
We found that koa-compress demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 11 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.