npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@labzzhq/compressor

v1.1.1

Published

Compress, Impress, Progress: Compressor for Web Excellence

Downloads

73

Readme

@labzzhq/compressor

The @labzzhq/compressor library provides robust compression capabilities for the Elysia Server and BunnyHop frameworks. It supports gzip, deflate, and brotli compression algorithms.

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

@labzzhq/compressor is a fork of elysia-compress by @vermaysha with some improvements and extended compatibility to Bunnyhop with Effect

Installation

To install the @labzzhq/compressor library, use the following command:

npm install @labzzhq/compressor

Usage

The @labzzhq/compressor plugin automatically compresses every response sent by the Elysia or BunnyHop server. It is particularly effective for responses in the form of JSON objects, text, and streams (such as Server-Sent Events).

Supported Encodings

The following encoding tokens are supported, in order of priority:

  1. br
  2. gzip
  3. deflate

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

The plugin determines whether a payload should be compressed based on its content-type. If no content type is present, it defaults to text/plain. Responses in the form of an object are automatically detected as application/json.

Performance Optimization

To enhance performance, caching compressed responses can significantly reduce server load. By setting an appropriate TTL (time to live), you can ensure that frequently accessed data is served quickly without repeatedly compressing the same content. The compressor library stores data in-memory, so it is advisable to set sensible defaults to avoid excessive memory usage.

Global Hook

The global compression hook is enabled by default. To disable it, pass the option { as: 'scoped' }. For more details, refer to the Elysia Scope documentation.

import { Elysia } from 'elysia';
import { compression } from '@labzzhq/compressor';

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

Compression Options

Threshold

The minimum byte size for a response to be compressed. The default value is 1024 bytes.

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. This option can be disabled by setting disableByHeader: true. The default value is false.

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

Brotli and Zlib Options

You can fine-tune compression by setting the brotliOptions and zlibOptions properties. These properties are passed directly to native Node.js zlib methods. Refer to the Node.js zlib documentation for more details.

const app = new Elysia().use(
  compression({
    brotliOptions: {
      params: {
        [zlib.constants.BROTLI_PARAM_MODE]: zlib.constants.BROTLI_MODE_TEXT,
        [zlib.constants.BROTLI_PARAM_QUALITY]: 4,
      },
    },
    zlibOptions: {
      level: 6,
    },
  }),
);

Customize Encoding Priority

By default, compressor prioritizes compression as described in the Usage section. You can change this by passing an array of compression tokens to the encodings option:

const app = new Elysia().use(
  compression({
    TTL: 3600, // Cache TTL of 1 hour
  }),
);

Cache TTL

Specify a time-to-live (TTL) for cache entries to define how long compressed responses should be cached. The TTL is specified in seconds and defaults to 86400 (24 hours).

const app = new Elysia().use(
  compression({
    encodings: ['deflate', 'gzip'],
  }),
);

Cache Server-Sent Events

By default, compressor does not compress responses in Server-Sent Events. To enable compression for Server-Sent Events, set the compressStream option to true.

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

License

This plugin is licensed under the MIT License.