Giter VIP home page Giter VIP logo

etag_plug's Introduction

ETagPlug

CircleCI Coverage Status

This plug generates shallow ETags.

Shallow means that it uses the whole response to generate the ETag and does not care about the specific content of each response. It is not context sensitive. For a deep (speak context sensitive) generation of ETags you can take a look at Phoenix ETag.

Installation

The plug can be installed by adding etag_plug to your list of dependencies in mix.exs:

def deps do
  [
    {:etag_plug, "~> 0.1.0"}
  ]
end

Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/etag_plug.

Usage

You can simply use the plug without any configuration, it then defaults to the configuration as specified in the "Configuration" section.

plug ETag.Plug

You can also provide a number of options, see the "Configuration" section for details.

plug ETag.Plug,
  generator: MyCustomGenerator,
  methods: ["GET", "HEAD"],
  status_codes: [:ok, 201, :not_modified]

Configuration

generator

Expects a module implementing the ETag.Generator behaviour. The plug ships with a number of "default" generators:

  • ETag.Generator.MD5
  • ETag.Generator.SHA1
  • ETag.Generator.SHA512

Default: Application.fetch_env!(:etag_plug, :generator)

methods

Expects a list of strings, describing the HTTP methods for which ETags should be generated and evaluated.

Default: Application.fetch_env!(:etag_plug, :methods)

status_codes

Expects an enumerable of integers (or status atoms) which define the statuses for which ETags should be handled and generated.

Default: Application.fetch_env!(:etag_plug, :status_codes)

etag_plug's People

Contributors

alexocode avatar janpieper avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.