
Research
Malicious fezbox npm Package Steals Browser Passwords from Cookies via Innovative QR Code Steganographic Technique
A malicious package uses a QR code as steganography in an innovative technique.
A man to help you unify API for mischellaneous storage engines.
Provide a handful set of of useful methods: get
, set
(with ttl), del
, mget
.
With built-in Redis and LevelUP support.
var Storeman = require('storeman')
var Redis = require('redis')
var levelup = require('levelup')
// cache with Redis
var cache = new Storeman({
prefix: 'cache:',
client: Redis.createClient(),
encode: function(data){
return JSON.stringify(data)
},
decode: function(data) {
return JSON.parse(data)
}
})
// persistent storage with leveldb
var store = new Storeman({
prefix: 'store:',
client: levelup('./var/leveldb')
})
The main purpose of this module is to provide a higher level of consistent API over different storage clients. That means:
All methods include:
Will callback(null, undefined)
when no data is found,
not return a null
(as redis does) or emit an error (as leveldb does).
This behavior is for in case you want really set data as null
.
The client is responsible for handling ttl
, Storeman will not do this for you.
Supports batch delete by passing an Array as key
.
the MIT license.
FAQs
Simple storage API unifier with prefix support
We found that storeman 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.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.
Application Security
/Research
/Security News
Socket detected multiple compromised CrowdStrike npm packages, continuing the "Shai-Hulud" supply chain attack that has now impacted nearly 500 packages.