Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
In-memory caching module for JavaScript
$ npm install felix
# or
$ bower install felix
var felix = require('felix');
var cache = felix.create('example');
cache.put('foo', 123);
cache.put('bar', 456);
console.log(cache.get('foo')); // 123
console.log(cache.get('bar')); // 456
console.log(cache.size()); // 2
cache.remove('foo');
console.log(cache.size()); // 1
cache.clear();
console.log(cache.size()); // 0
The top level API for felix
is used to manage stored Cache
objects.
Construct a cache object identified by id
Get a cache object by it's identifier
Remove a cache by it's identifier
Clear all caches
The Cache
object is what is returned by felix.create
and felix.get
.
Put a key-value pair into the cache
Get the cached value for key
Remove the cached value for key
Clear all cached values
Get the size of the cache
Get all the cache keys
MIT
0.1.0 (Jan 02, 2015)
FAQs
In-memory caching module for JavaScript
The npm package felix receives a total of 3 weekly downloads. As such, felix popularity was classified as not popular.
We found that felix demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.