Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
@appfarm/ttl-cache-redis
Advanced tools
Simple abstraction of redis for storing strings and objects
This is a supersimple abstraction for storing strings and JSON-objects in redis.
Using npm:
$ npm install @appfarm/ttl-cache-redis
const Cache = require('@appfarm/ttl-cache-redis')
const myCache = new Cache({
redisConnectionString: 'redis://localhost:6379',
cacheKeyPrefix: 'MY-CACHE-', // prefix any key with this value
})
// Setting "foo" to MY-CACHE-newkey with a
// lifetime of 10 minutes
myCache
.setStringValue('newkey', 'foo', 600)
.then(() => console.log('Successfully set string value'))
.catch(err => console.error(err))
myCache
.setObjectValue('myobject', { foo: 'bar' }, 300)
.then(() => console.log('Successfully set object value'))
.catch(err => console.error(err))
// Retrieve string value from cache
myCache
.getStringValue(key)
.then(value => {
console.log('Found value:', value)
})
.catch(err => {
console.log('Unable to find value or key has expired')
})
// Retrieve object value from store
myCache
.getObectValue(key)
.then(objectValue => {
console.log('Found object:', objectValue)
})
.catch(err => {
console.log('Unable to find value or key has expired')
})
// Fire and forget - delete value from store immediately
// Returns nothing.
myCache.invalidate('newkey')
FAQs
Simple abstraction of redis for storing strings and objects
We found that @appfarm/ttl-cache-redis 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
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.