1.0.1 • Published 13 days ago

elysia-compress v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
13 days ago

elysia-compress

CI Test NPM version js-standard-style GitHub License NPM Downloads

Add compression to Elysia Server. Supports gzip, deflate, and brotli.

Note Brotli Compression is only available and supported by Bun v1.1.8 or higher

Install

bun add elysia-compress

Usage

This plugin provides a function to automatically compress every Response sent by Elysia Response. Especially on responses in the form of JSON Objects, Text and Stream (Server Sent Events).

Currently, the following encoding tokens are supported, using the first acceptable token in this order:

  1. br
  2. gzip
  3. deflate

If an unsupported encoding is received or if the 'accept-encoding' header is missing, it will not compress the payload.

The plugin automatically decides if a payload should be compressed based on its content-type; if no content type is present, it will assume text/plain. But if you send a response in the form of an Object then it will be detected automatically as application/json

Global Hook

The global compression hook is enabled by default. To disable it, pass the option { as: 'scoped' } or { as: 'scoped' } You can read in-depth about Elysia Scope on this page

import { Elysia } from 'elysia'
import { compression } from 'elysia-compress'

const app = new Elysia()
  .use(
    compression({
      as: 'scoped',
    }),
  )
  .get('/', () => ({ hello: 'world' }))

Compress Options

threshold

The minimum byte size for a response to be compressed. Defaults to 1024.

const app = new Elysia().use(
  compression({
    threshold: 2048,
  }),
)

Disable compression by header

You can selectively disable response compression by using the x-no-compression header in the request. You can still disable this option by adding disableByHeader: true to options. Default to false

const app = new Elysia().use(
  compression({
    disableByHeader: true,
  }),
)

brotliOptions and zlibOptions

You can tune compression by setting the brotliOptions and zlibOptions properties. These properties are passed directly to native node zlib methods, so they should match the corresponding class definitions.

const app = new Elysia().use(
  compression({
    brotliOptions: {
      params: {
        [zlib.constants.BROTLI_PARAM_MODE]: zlib.constants.BROTLI_MODE_TEXT, // useful for APIs that primarily return text
        [zlib.constants.BROTLI_PARAM_QUALITY]: 4, // default is 4, max is 11, min is 0
      },
    },
    zlibOptions: {
      level: 6, // default is typically 6, max is 9, min is 0
    },
  }),
)

Customize encoding priority

By default, elysia-compress prioritizes compression as described Usage. You can change that by passing an array of compression tokens to the encodings option:

const app = new Elysia().use(
  compression({
    // Only support gzip and deflate, and prefer deflate to gzip
    encodings: ['deflate', 'gzip'],
  }),
)
1.0.1

13 days ago

1.0.0

26 days ago

0.0.1-beta.1

26 days ago

0.0.1-beta.0

26 days ago