🚀. Socket Launch Week Day 2:Introducing Manifest Alerts.Learn more
Sign In

adonis-cache

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

adonis-cache - npm Package Compare versions

Comparing version
0.1.0
to
0.1.1
+1
-1
package.json
{
"name": "adonis-cache",
"version": "0.1.0",
"version": "0.1.1",
"description": "Cache provider for AdonisJs framework",

@@ -5,0 +5,0 @@ "scripts": {

@@ -284,6 +284,6 @@ # AdonisCache

```
cache.hit
cache.missed
cache.key.forgotten
cache.key.written
Cache.hit
Cache.missed
Cache.keyForgotten
Cache.keyWritten
```

@@ -28,4 +28,4 @@ 'use strict'

CacheHit.EVENT = 'cache.hit'
CacheHit.EVENT = 'Cache.hit'
module.exports = CacheHit

@@ -26,4 +26,4 @@ 'use strict'

CacheMissed.EVENT = 'cache.missed'
CacheMissed.EVENT = 'Cache.missed'
module.exports = CacheMissed

@@ -26,4 +26,4 @@ 'use strict'

KeyForgotten.EVENT = 'key.forgotten'
KeyForgotten.EVENT = 'Cache.keyForgotten'
module.exports = KeyForgotten

@@ -30,4 +30,4 @@ 'use strict'

KeyWritten.EVENT = 'key.written'
KeyWritten.EVENT = 'Cache.keyWritten'
module.exports = KeyWritten