New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

koa-cash

Package Overview
Dependencies
Maintainers
5
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

koa-cash - npm Package Compare versions

Comparing version

to
4.0.3

13

index.js

@@ -20,3 +20,3 @@ const { gzip } = require('zlib');

module.exports = function(options) {
options = options || {};
options = options || { compression: false };

@@ -63,2 +63,3 @@ const hash =

if (
options.compression &&
obj.gzip &&

@@ -72,3 +73,5 @@ this.request.acceptsEncodings('gzip', 'identity') === 'gzip'

// tell any compress middleware to not bother compressing this
this.response.set('Content-Encoding', 'identity');
if (options.compression) {
this.response.set('Content-Encoding', 'identity');
}
}

@@ -126,3 +129,7 @@

if (compressible(obj.type) && ctx.response.length >= threshold) {
if (
options.compression &&
compressible(obj.type) &&
ctx.response.length >= threshold
) {
obj.gzip = await compress(body);

@@ -129,0 +136,0 @@ if (

{
"name": "koa-cash",
"description": "HTTP response caching for Koa. HTTP response caching for Koa. Supports Redis, in-memory store, and more!",
"version": "4.0.1",
"version": "4.0.3",
"author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",

@@ -6,0 +6,0 @@ "ava": {

@@ -33,3 +33,3 @@ # koa-cash

* Handles JSON and stream bodies
* Handles gzip compression negotiation
* Handles gzip compression negotiation (if `options.compression` is set to `true` as of v4.0.0)
* Handles 304 responses

@@ -90,2 +90,6 @@

#### `compression`
If a truthy value is passed, then compression will be enabled. This value is `false` by default.
#### `hash()`

@@ -92,0 +96,0 @@

@@ -18,3 +18,4 @@ const LRU = require('lru-cache');

return c.set(key, value);
}
},
compression: true
}

@@ -21,0 +22,0 @@ )

@@ -19,3 +19,4 @@ const Koa = require('koa');

return c.set(key, value);
}
},
compression: true
}

@@ -39,3 +40,4 @@ )

return c.set(key, value);
}
},
compression: true
});

@@ -174,3 +176,4 @@

return c.set(key, JSON.stringify(value));
}
},
compression: true
});

@@ -177,0 +180,0 @@ app.use(async function(ctx) {