Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
fastify-compress
Advanced tools
Adds compression utils to the Fastify reply
object.
Support gzip
, deflate
and brotli
.
npm i fastify-compress --save
This plugins adds two functionalities to Fastify, a compress utility and a global compression hook.
Currently the following headers are supported:
'deflate'
'gzip'
'br'
'*'
If the 'accept-encoding'
header specifies no preferred encoding with an asterisk *
the payload will be compressed with gzip
.
If an unsupported encoding is received, it will automatically return a 406
error, if the 'accept-encoding'
header is missing, it will not compress the payload.
It automatically defines if a payload should be compressed or not based on its Content-Type
, if no content type is present, it will assume is application/json
.
The global compression hook is enabled by default if you want to disable it, pass the option { global: false }
.
fastify.register(
require('fastify-compress'),
{ global: false }
)
Remember that thanks to the Fastify encapsulation model, you can set a global compression, but running it only in a subset of routes is you wrap them inside a plugin.
reply.compress
This plugin add a compress
function to reply
that accepts a stream or a string and compress it based on the 'accept-encoding'
header. If a js object is passed in, will be stringified as json.
const fs = require('fs')
const fastify = require('fastify')
fastify.register(require('fastify-compress'), { global: false })
fastify.get('/', (req, reply) => {
reply
.type('text/plain')
.compress(fs.createReadStream('./package.json'))
})
fastify.listen(3000, function (err) {
if (err) throw err
console.log(`server listening on ${fastify.server.address().port}`)
})
You can set a custom threshold below which it will not be made compression, default to 1024
.
fastify.register(
require('fastify-compress'),
{ threshold: 2048 }
)
Brotli compression is not enabled by default, if you need it we recommend to install iltorb
and pass it as option.
fastify.register(
require('fastify-compress'),
{ brotli: require('iltorb') }
)
You can selectively disable the response compression by using the x-no-compression
header in the request.
Please have in mind that in large scale scenarios, you should use a proxy like Nginx to handle response-compression.
This project is kindly sponsored by:
Licensed under MIT.
FAQs
`fastify-compress@4.1.0` has been deprecated. Please use `@fastify/compress@5.0.0` instead.
We found that fastify-compress demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 17 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
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.