All Projects → tkoenig89 → Express Static Gzip

tkoenig89 / Express Static Gzip

Licence: mit
Simple wrapper on top of serveStatic, that allows serving pre-gzipped files as well as other types of compressions.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Express Static Gzip

Express Security
nodejs + express security and performance boilerplate.
Stars: ✭ 37 (-68.91%)
Mutual labels:  express, gzip, brotli
restler
Restler is a beautiful and powerful Android app for quickly testing REST API anywhere and anytime.
Stars: ✭ 120 (+0.84%)
Mutual labels:  gzip, brotli
bundle
An online tool to quickly bundle & minify your projects, while viewing the compressed gzip/brotli bundle size, all running locally on your browser.
Stars: ✭ 475 (+299.16%)
Mutual labels:  gzip, brotli
Archiver
Easily create & extract archives, and compress & decompress files of various formats
Stars: ✭ 3,373 (+2734.45%)
Mutual labels:  gzip, brotli
lambdafs
Efficient (de)compression package for AWS Lambda
Stars: ✭ 24 (-79.83%)
Mutual labels:  gzip, brotli
precompress
Generate pre-compressed .gz and .br files for static web servers
Stars: ✭ 27 (-77.31%)
Mutual labels:  gzip, brotli
EasyCompressor
⚡ A compression library that implements many compression algorithms such as LZ4, Zstd, LZMA, Snappy, Brotli, GZip, and Deflate. It helps you to improve performance by reducing Memory Usage and Network Traffic for caching.
Stars: ✭ 167 (+40.34%)
Mutual labels:  gzip, brotli
Reactql
Universal React+GraphQL starter kit: React 16, Apollo 2, MobX, Emotion, Webpack 4, GraphQL Code Generator, React Router 4, PostCSS, SSR
Stars: ✭ 1,833 (+1440.34%)
Mutual labels:  gzip, brotli
Connect Gzip Static
connect middleware for statically compressed files
Stars: ✭ 39 (-67.23%)
Mutual labels:  gzip, brotli
Django Compression Middleware
Django middleware to compress responses using several algorithms.
Stars: ✭ 23 (-80.67%)
Mutual labels:  gzip, brotli
restio
HTTP Client for Dart inspired by OkHttp
Stars: ✭ 46 (-61.34%)
Mutual labels:  gzip, brotli
Nuxt Compress
A simple static asset compression module for Nuxt that runs Gzip and Brotli compression during the build process
Stars: ✭ 61 (-48.74%)
Mutual labels:  gzip, brotli
restish
Restish is a CLI for interacting with REST-ish HTTP APIs with some nice features built-in
Stars: ✭ 453 (+280.67%)
Mutual labels:  gzip, brotli
gzipped
Replacement for golang http.FileServer which supports precompressed static assets.
Stars: ✭ 86 (-27.73%)
Mutual labels:  gzip, brotli
Turbobench
Compression Benchmark
Stars: ✭ 211 (+77.31%)
Mutual labels:  gzip, brotli
pyrus-cramjam
Thin Python wrapper to de/compression algorithms in Rust - lightweight & no dependencies
Stars: ✭ 40 (-66.39%)
Mutual labels:  gzip, brotli
Fusebox Angular Universal Starter
Angular Universal seed project featuring Server-Side Rendering, @fuse-box bundling, material, firebase, Jest, Nightmare, and more
Stars: ✭ 132 (+10.92%)
Mutual labels:  gzip, brotli
Browserify Middleware
express middleware for browserify, done right
Stars: ✭ 385 (+223.53%)
Mutual labels:  express, gzip
Aspnetcore Request Decompression
HTTP request decompression middleware for ASP.NET Core
Stars: ✭ 51 (-57.14%)
Mutual labels:  gzip, brotli
Fastify Compress
Fastify compression utils
Stars: ✭ 95 (-20.17%)
Mutual labels:  gzip, brotli

express-static-gzip

npm Node CI npm Donate

Provides a small layer on top of serve-static, which allows to serve pre-gzipped files. Supports brotli and allows configuring any other compression you can think of as well.

If express-static-gzip saved you some time, feel free to buy me a cup of coffee :) Donate

Requirements

For the express-static-gzip middleware to work properly you need to first ensure that you have all files gzipped (or compressed with your desired algorithm) which you want to serve as a compressed version to the browser. Simplest use case is to either have a folder with only .gz files, or you have a folder with the .gz files next to the original files. Same goes for other compressions.

Install

    $ npm install express-static-gzip

Changelog for v2.0

  • Even so this is a mayor release, this should be fully backwards compatible and should not have any breaking change to v1.1.3.

  • Moved all options for serverStatic in its own section (serveStatic) to prevent collisions when setting up your static fileserving middleware.

  • For backwards compatibility all root options that apply to serveStatic will be copied to the new serveStatic section, except if you have set values there already (no overwrite). Here is a small example of this behaviour:

    {
        enableBrotli: true,         // not a serverStatic option, will not be moved
        maxAge: 123,                // not copied, as already present.
        index: 'main.js',           // copied to serveStatic section
        serveStatic: {
            maxAge: 234,            // will be kept 
            cacheControl: false     // will be kept as well
        }
    }
    

    In the above scenario serveStatic will use cacheControl: false, index: 'main.js', maxAge:234.

Usage

In case you just want to serve gzipped files only, this simple example would do:

var express = require("express");
var expressStaticGzip = require("express-static-gzip");
var app = express();

app.use("/", expressStaticGzip("/my/rootFolder/"));

While gzip compression is always enabled you now have the choice to add other types of compressions using the options object. Currently brotli can be enabled using the options.enableBrotli flag. All other compressions need to be added by passing an array to options.customCompressions. The options.serveStatic section is passed to the underlying serve-static middleware, in case you want to configure this one as well.

The following example will show how to add brotli and deflate (with file extension .zz) to the middleware (it will still support gzip) and force brotli to be used if available (orderPreference):

var express = require('express');
var expressStaticGzip = require('express-static-gzip');
var app = express();

app.use('/', expressStaticGzip('/my/rootFolder/', {
    enableBrotli: true,
    customCompressions: [{
        encodingName: 'deflate',
        fileExtension: 'zz'
    }],
    orderPreference: ['br']
}));

Compressions are selected in the following order if a file is requested from the middleware:

  • any encoding listed in option.orderPreference and supported by the client
  • in order of the requests 'accept-encoding' header content (if no quality if provided)
  • in order of their respective quality (if provided)
  • in case of a wildcard '*', the compression is selected in alphabetical order (for now)
  • plain file (in case no compression exists or none is matching the browsers accept-encoding header)

For more details see here, but not all of it is implemented at the moment.

When the middleware is created it will check the given root folder and all subfolders for files matching the registered compression. Adding files later to the folder will not be recognized by the middleware.

Available options

  • enableBrotli: boolean (default: false)

    Enables support for the brotli compression, using file extension 'br' (e.g. 'index.html.br').

  • index: boolean | string (default: 'index.html')

    By default this module will send "index.html" files in response to a request on a directory (url ending with '/'). To disable this set false or to supply a new index file pass a string (like 'index.htm').

  • customCompressions: [{encodingName: string, fileExtension: string}]

    Using this option, you can add any other compressions you would like. encodingName will be checked against the Accept-Header. fileExtension is used to find files using this compression. fileExtension does not require a dot (not '.gz', but 'gz').

  • orderPreference: string[]

    This options allows overwriting the client's requested encoding preference (see MDN) with a server side preference. Any encoding listed in orderPreference will be used first (if supported by the client) before falling back to the client's supported encodings. The order of entries in orderPreference is taken into account.

  • serveStatic: ServeStaticOptions

    This will be forwarded to the underlying serveStatic instance used by expressStaticGzip

Behavior warning

In default mode a request for "/" or "<somepath>/" will serve index.html as compressed version. This could lead to complications if you are serving a REST API from the same path, when express-server-static is registered before your API.

One solution would be to register express-server-static last. Otherweise you can set options.index to false:

app.use("/", expressStaticGzip("/my/rootFolder/", { index: false }));

Because this middleware was developed for a static production server use case to maximize performance, it is designed to look up and cache the compressed files corresponding to uncompressed file names on startup. This means that it will not be aware of compressed files being added or removed later on.

Example

In case you have the following basic file structure

  • rootFolder
    • index.html
    • index.html.gz
    • index.html.br
    • test.html.gz
    • main.js

and you use set the enableBrotli flag to true, express-static-gzip will answer GET requests like this:

GET / >>> /my/rootFolder/index.html.br

GET /index.html >>> /my/rootFolder/index.html.br

GET /test.html >>> /my/rootFolder/test.html.gz

GET /main.js >>> /my/rootFolder/main.js

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].