Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

express-static-gzip-nesto

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

express-static-gzip-nesto

simple wrapper on top of express.static, that allows serving pre-gziped files

  • 0.3.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

express-static-gzip

Provides a small layer on top of the express.static middleware, which allows to serve pre-gzipped files from a directory. Now supports other compressions like brotli as well.

Requirements

For the express-static-gzip middleware to work properly you need to first ensure that you have all files gzipped, 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. Some goes for other compressions.

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 object is also passed to the express.static middleware, in case you want to configure this one as well.

The following example will show howto add brotli and deflate(with file extension .zz) to the middleware (it will still support gzip):

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"
    }]
}));

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

  • any custom compression in the order they are provided to options.customCompressions
  • brotli (if enabled via options.enableBrotli)
  • gzip
  • plain file (in case no compression exists or none is matching the browsers accepted encodings header)

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.

In default mode a request for "/" or "<somepath>/" will now serve index.html as compressed version. If for some kind of reason you don't want this to happen set options.indexFromEmptyFile to false.

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

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

Keywords

FAQs

Package last updated on 08 Dec 2017

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc