Compression plugin for Elysia
npm install elysia-compressionCompression plugin for elysia
``bash`
bun add elysia-compression
`typescript
import { Elysia } from 'elysia'
import { compression } from 'elysia-compression'
const app = new Elysia().use(compression()).listen(8080)
`
@default gzip
The type of compression to use. Can be one of the following:
- gzipdeflate
-
@default {}
Options passed to the compression library.
Refer to the bun zlib options documentation for more details.
@default utf-8`
The encoding of the response body that is being compressed.