yd-etag

1.0.4 • Public • Published

koa-etag

NPM version Build status Test coverage Dependency Status License Downloads

ETag support for Koa responses using etag.

Installation

$ npm install koa-etag

Example

var conditional = require('koa-conditional-get');
var etag = require('koa-etag');
var koa = require('koa');
var app = koa();

// etag works together with conditional-get
app.use(conditional());
app.use(etag());

app.use(function(next){
  return function *(){
    yield next;
    this.body = 'Hello World';
  }
})

app.listen(3000);

console.log('listening on port 3000');

License

MIT

Package Sidebar

Install

npm i yd-etag

Weekly Downloads

1

Version

1.0.4

License

MIT

Last publish

Collaborators

  • yadan