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

bluecache

Package Overview
Dependencies
Maintainers
2
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bluecache - npm Package Compare versions

Comparing version 0.0.1 to 0.1.0

2

package.json
{
"name": "bluecache",
"description": "lru-cache via bluebird",
"version": "0.0.1",
"version": "0.1.0",
"author": "AgileMD <hello@agilemd.com>",

@@ -6,0 +6,0 @@ "contributors": [

@@ -7,2 +7,6 @@ bluecache

<a href="http://promisesaplus.com/">
<img src="http://promisesaplus.com/assets/logo-small.png" alt="Promises/A+ logo" title="Promises/A+ 1.0 compliant" align="right" />
</a>
### Motivation

@@ -18,4 +22,4 @@

var options = {
max: 500,
maxAge: 1000 * 60 * 60
max: 500,
maxAge: 1000 * 60 * 60
};

@@ -26,8 +30,8 @@

cache.set("key", "value")
cache.get("key").then(function (value) {
console.log("key => ", value); // "key => value"
});
cache.reset();
.then(function () {
return cache.get("key")
})
.then(function (_value) {
console.log("key => ", _value); // "key => value"
});
```

@@ -34,0 +38,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc