Skip to content
This repository has been archived by the owner on Apr 6, 2019. It is now read-only.

Latest commit

 

History

History
37 lines (25 loc) · 843 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 843 Bytes

taggart

Note: Please have a look at this commit, any help is appreciated.

An ETag header middleware for express like apps. It is a zero dependency middleware which generates ETags accurately.

Installation

$ npm install --save @ramlmn/taggart

Usage

const express = require('express');
const taggart = require('@ramlmn/taggart');

const app = express();

app.use(taggart);

app.use(...);
...

Working

taggart simply overrides the write, end and send methods of the res (ServerResponse object) and tries to gather around the response content being sent to the client, at the end, taggart adds the ETag header to the response if it is't buffered or tansfered in chunks.

License

MIT